summaryrefslogtreecommitdiffstats
path: root/base/rsync/Pkgfile
diff options
context:
space:
mode:
authorThierry N <thierryn1 at hispeed dot ch>2009-08-07 14:25:08 +0200
committerThierry N <thierryn1 at hispeed dot ch>2009-08-07 14:25:08 +0200
commit5e98dfe87ec4f631d5923aa31a56ec88332c5024 (patch)
treec2caa199bc9ae83a2db6ff351b1d9df4a0fe6154 /base/rsync/Pkgfile
parent26f3d58598ecdf83fa67b6183c7a9b0f60ca9621 (diff)
downloadnutyx-pakxe-5e98dfe87ec4f631d5923aa31a56ec88332c5024.tar.gz
nutyx-pakxe-5e98dfe87ec4f631d5923aa31a56ec88332c5024.tar.bz2
nutyx-pakxe-5e98dfe87ec4f631d5923aa31a56ec88332c5024.tar.xz
nutyx-pakxe-5e98dfe87ec4f631d5923aa31a56ec88332c5024.zip
Ajout de rsync#3.0.6-1
Diffstat (limited to 'base/rsync/Pkgfile')
-rwxr-xr-xbase/rsync/Pkgfile23
1 files changed, 23 insertions, 0 deletions
diff --git a/base/rsync/Pkgfile b/base/rsync/Pkgfile
new file mode 100755
index 000000000..fdcfe8275
--- /dev/null
+++ b/base/rsync/Pkgfile
@@ -0,0 +1,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: libiconv, popt
+
+name=rsync
+version=3.0.6
+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
+}