summaryrefslogtreecommitdiffstats
path: root/base/rsync/Pkgfile
blob: a670d60cb1d052334577e1805510eebd1df18309 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Description: Protocol de synchronisation de fichiers très efficace
# URL: http://samba.anu.edu.au/rsync/
# Maintainer: NuTyX core team
# Packager: thierryn1 at hispeed dot ch
# Depends on: 

name=rsync
version=3.0.7
release=1
source=( http://rsync.samba.org/ftp/$name/$name-$version.tar.gz\
	rsync.driver)


build() {
	cd $name-$version
	./configure --prefix=/usr \
		--mandir=/usr/share/man \
		--infodir=/usr/share/info 
	make
	make DESTDIR=$PKG install
	install -d $PKG/etc/ports/drivers
	install -m 755 $SRC/rsync.driver $PKG/etc/ports/drivers/rsync
}