librsync: initial import

This commit is contained in:
Simon Gloner 2006-05-14 10:51:00 +00:00
parent 42cd2d78df
commit 05f78ff43f
3 changed files with 37 additions and 0 deletions

17
librsync/.footprint Normal file
View File

@ -0,0 +1,17 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/rdiff
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/man1/
-rw-r--r-- root/root usr/man/man1/rdiff.1.gz
drwxr-xr-x root/root usr/man/man3/
-rw-r--r-- root/root usr/man/man3/librsync.3.gz

1
librsync/.md5sum Normal file
View File

@ -0,0 +1 @@
24cdb6b78f45e0e83766903fd4f6bc84 librsync-0.9.7.tar.gz

19
librsync/Pkgfile Normal file
View File

@ -0,0 +1,19 @@
# 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
}