diff options
Diffstat (limited to 'community/librsync/PKGBUILD')
-rw-r--r-- | community/librsync/PKGBUILD | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/community/librsync/PKGBUILD b/community/librsync/PKGBUILD new file mode 100644 index 000000000..5674db504 --- /dev/null +++ b/community/librsync/PKGBUILD @@ -0,0 +1,35 @@ +# $Id: PKGBUILD 64645 2012-02-17 13:31:34Z foutrelis $ +# Maintainer: Evangelos Foutras <evangelos@foutrelis.com> +# Contributor: Alessio 'mOLOk' Bolognino <themolok@gmail.com> +# Contributor: Christoph 'delmonico' Neuroth <delmonico@gmx.net> + +pkgname=librsync +pkgver=0.9.7 +pkgrel=6 +pkgdesc="A free software library that implements the rsync remote-delta algorithm (rdiff)" +arch=('i686' 'x86_64') +url="http://librsync.sourceforge.net/" +license=('GPL') +depends=('popt' 'zlib' 'bzip2') +options=('!libtool') +source=(http://downloads.sourceforge.net/sourceforge/librsync/$pkgname-$pkgver.tar.gz + lfs-overflow.patch) +sha256sums=('6633e4605662763a03bb6388529cbdfd3b11a9ec55b8845351c1bd9a92bc41d6' + 'bda94f0aa550498673a459326656798b9f327c8687fa924415cf7b08e8fd2f38') + +build() { + cd "$srcdir/$pkgname-$pkgver" + + # Patch for large files (https://bugzilla.redhat.com/show_bug.cgi?id=207940) + patch -Np1 -i "$srcdir/lfs-overflow.patch" + + ./configure --prefix=/usr --mandir=/usr/share/man --enable-shared + make +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + make DESTDIR="$pkgdir" install +} + +# vim:set ts=2 sw=2 et: |