-
Notifications
You must be signed in to change notification settings - Fork 3
/
INSTALL
36 lines (25 loc) · 939 Bytes
/
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
Plowshare4 GIT-snapshot installation notes.
There are two ways to install Plowshare4.
Using GNU Make
==============
$ sudo make install
# For non root users, you can override default prefix (/usr/local)
$ make install PREFIX=/home/$USER
# If you are on a cross compilation environment:
# (default prefix is /usr/local)
$ make install DESTDIR=/media/rootfs
or
$ make install PREFIX=/opt DESTDIR=/media/rootfs
Plowshare4 is also available for several Linux distribution
(Debian, Ubuntu, Archlinux, Fedora, Gentoo, ...):
Consult online documentation for up-to-date list:
http://code.google.com/p/plowshare/wiki/Readme
Without GNU Make
================
Note: This is also the recommended way for BSD & Mac OS X users.
The script will look for gsed and patch plowshare.
# Default installation path: is /usr/local
$ sudo bash setup.sh install
# Or as non-root:
$ PREFIX=$HOME bash setup.sh install
# vim: set fileencoding utf-8