summaryrefslogtreecommitdiff
path: root/community/librsync/PKGBUILD
diff options
context:
space:
mode:
authorNicolas Reynolds <fauno@kiwwwi.com.ar>2012-02-19 00:31:40 -0300
committerNicolas Reynolds <fauno@kiwwwi.com.ar>2012-02-19 00:31:40 -0300
commitb7be3e931b811decb9a8686a60e52fe723bbaf81 (patch)
tree2e7da21de151c50ecdfa97a9d4ef5db5de62db51 /community/librsync/PKGBUILD
parent78397621fc97288066a5d73989811ab0fe641bd6 (diff)
parent1098e9db0acc5bb5c45af5778492faf3b4c99dd6 (diff)
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts: community-testing/ipvsadm/PKGBUILD community/arch/PKGBUILD community/chntpw/PKGBUILD community/dnstracer/PKGBUILD community/dvtm/PKGBUILD community/gnash/PKGBUILD community/ngspice/PKGBUILD community/siege/PKGBUILD extra/enscript/PKGBUILD extra/gconfmm/PKGBUILD extra/gftp/PKGBUILD extra/libart-lgpl/PKGBUILD extra/libcaca/PKGBUILD extra/libdv/PKGBUILD extra/libgnomemm/PKGBUILD extra/libidl2/PKGBUILD extra/libvisual/PKGBUILD extra/libxdamage/PKGBUILD extra/libxrender/PKGBUILD extra/openslp/PKGBUILD extra/snarf/PKGBUILD multilib/wine/PKGBUILD testing/mesa/PKGBUILD testing/xf86-video-glint/PKGBUILD
Diffstat (limited to 'community/librsync/PKGBUILD')
-rw-r--r--community/librsync/PKGBUILD16
1 files changed, 8 insertions, 8 deletions
diff --git a/community/librsync/PKGBUILD b/community/librsync/PKGBUILD
index 943fe9801..0a0a4c435 100644
--- a/community/librsync/PKGBUILD
+++ b/community/librsync/PKGBUILD
@@ -1,11 +1,11 @@
-# $Id: PKGBUILD 11387 2010-02-10 04:50:34Z foutrelis $
-# Maintainer: Evangelos Foutras <foutrelis@gmail.com>
+# $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=5
+pkgrel=6
pkgdesc="A free software library that implements the rsync remote-delta algorithm (rdiff)"
arch=('i686' 'x86_64' 'mips64el')
url="http://librsync.sourceforge.net/"
@@ -14,22 +14,22 @@ depends=('popt' 'zlib' 'bzip2')
options=('!libtool')
source=(http://downloads.sourceforge.net/sourceforge/librsync/$pkgname-$pkgver.tar.gz
lfs-overflow.patch)
-md5sums=('24cdb6b78f45e0e83766903fd4f6bc84'
- 'e18536482c0a32e7004c46eac6a53b2d')
+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" || return 1
+ patch -Np1 -i "$srcdir/lfs-overflow.patch"
./configure --prefix=/usr --mandir=/usr/share/man --enable-shared
- make || return 1
+ make
}
package() {
cd "$srcdir/$pkgname-$pkgver"
- make DESTDIR="$pkgdir" install || return 1
+ make DESTDIR="$pkgdir" install
}
# vim:set ts=2 sw=2 et: