librsync: initial import (now it's the right one)

This commit is contained in:
Simon Gloner 2006-05-14 10:59:29 +00:00
parent 1b4392d243
commit f19c7adf02
3 changed files with 36 additions and 0 deletions

13
librsync/.footprint Normal file
View File

@ -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

1
librsync/.md5sum Normal file
View File

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

22
librsync/Pkgfile Normal file
View File

@ -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
}