diff options
author | root <root@rshg054.dnsready.net> | 2013-08-11 01:21:34 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-08-11 01:21:34 -0700 |
commit | 18a41d682d6e91e0d28fce23eb75292f477bd620 (patch) | |
tree | bce8f660d7d0b6541cadbc49bf1bac2434e4c0c6 /community/librsync/PKGBUILD | |
parent | 0ade1da67addf154d93c6a6399b0a3d5a18a3336 (diff) |
Sun Aug 11 01:21:31 PDT 2013
Diffstat (limited to 'community/librsync/PKGBUILD')
-rw-r--r-- | community/librsync/PKGBUILD | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/community/librsync/PKGBUILD b/community/librsync/PKGBUILD deleted file mode 100644 index 5674db504..000000000 --- a/community/librsync/PKGBUILD +++ /dev/null @@ -1,35 +0,0 @@ -# $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: |