From f19c7adf020e085d6b892a8af15ac4004b114a05 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simon=20Glo=DFner?= Date: Sun, 14 May 2006 10:59:29 +0000 Subject: [PATCH] librsync: initial import (now it's the right one) --- librsync/.footprint | 13 +++++++++++++ librsync/.md5sum | 1 + librsync/Pkgfile | 22 ++++++++++++++++++++++ 3 files changed, 36 insertions(+) create mode 100644 librsync/.footprint create mode 100644 librsync/.md5sum create mode 100644 librsync/Pkgfile diff --git a/librsync/.footprint b/librsync/.footprint new file mode 100644 index 000000000..6fe02324a --- /dev/null +++ b/librsync/.footprint @@ -0,0 +1,13 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/include/ +-rw-r--r-- root/root usr/include/librsync-config.h +-rw-r--r-- root/root usr/include/librsync.h +drwxr-xr-x root/root usr/lib/ +-rw-r--r-- root/root usr/lib/librsync.a +-rwxr-xr-x root/root usr/lib/librsync.la +lrwxrwxrwx root/root usr/lib/librsync.so -> librsync.so.1.0.2 +lrwxrwxrwx root/root usr/lib/librsync.so.1 -> librsync.so.1.0.2 +-rwxr-xr-x root/root usr/lib/librsync.so.1.0.2 +drwxr-xr-x root/root usr/man/ +drwxr-xr-x root/root usr/man/man3/ +-rw-r--r-- root/root usr/man/man3/librsync.3.gz diff --git a/librsync/.md5sum b/librsync/.md5sum new file mode 100644 index 000000000..b495f625e --- /dev/null +++ b/librsync/.md5sum @@ -0,0 +1 @@ +24cdb6b78f45e0e83766903fd4f6bc84 librsync-0.9.7.tar.gz diff --git a/librsync/Pkgfile b/librsync/Pkgfile new file mode 100644 index 000000000..7c20267b7 --- /dev/null +++ b/librsync/Pkgfile @@ -0,0 +1,22 @@ +# Description: Library for delta compression of streams +# URL: http://librsync.sourceforge.net/ +# Maintainer: Simon Gloßner, viper at hometux dot de +# Depends on: popt + +name=librsync +version=0.9.7 +release=1 +source=(http://dl.sourceforge.net/${name}/${name}-${version}.tar.gz) + +build() { + cd $name-$version + + ./configure \ + --prefix=/usr \ + --enable-shared + make + make DESTDIR=$PKG install + + rm -r $PKG/usr/man/man1 + rm -r $PKG/usr/bin +}