-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathINSTALL
68 lines (68 loc) · 1.71 KB
/
INSTALL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
##
## Running uninstalled
## ===================
##
## Meld does not need to be installed in order to be used. You can run Meld
## directly from the directory you downloaded and extracted it to. From the
## extracted directory, run:
##
## bin/meld
##
## In order to have translations work, you need to generate them first. Do
## this by running (also from the extracted directory):
##
## make
##
## If you want to be able to run Meld uninstalled just by typing 'meld' then
## create a symbolic link somewhere in your path, pointing to the executable.
## e.g.,
##
## ln -s ~/Download/meld/bin/meld ~/.local/bin/meld
##
##
##
## Installing
## ==========
##
## Install Meld by changing to the extracted directory and then running, e.g.,:
##
## make prefix=/usr/local install
##
## which will install Meld under /usr/local; the Meld executable will end up
## at /usr/local/bin/meld.
##
## If you need to, you can customise the install paths used here:
##
PYTHON ?= python
prefix := /usr/local
bindir := $(prefix)/bin
libdir := $(prefix)/lib
docdir := $(prefix)/share/doc
sharedir := $(prefix)/share
helpdir := $(sharedir)/gnome/help
localedir := $(prefix)/share/locale
localstatedir := $(prefix)/var
libdir_ := $(libdir)/meld
docdir_ := $(docdir)/meld
sharedir_ := $(sharedir)/meld
helpdir_ := $(helpdir)/meld
##
## Python Version
## **************
##
## Meld requires at least python 2.5.
##
## Dependencies
## ************
##
## At the very least you will need:
## * pygtk-2.14.0
## * pygobject-2.16.0
##
## Optional:
## * pygtksourceview 2.4 or higher
## (http://sourceforge.net/projects/pygtksourceview)
##
## They are all available from your favourite gnome mirror.
## Alternatively many distributions provide binary packages.
##