summaryrefslogtreecommitdiff
path: root/extra/rsync
diff options
context:
space:
mode:
authorNicolas Reynolds <fauno@kiwwwi.com.ar>2012-02-13 01:08:38 -0300
committerNicolas Reynolds <fauno@kiwwwi.com.ar>2012-02-13 01:08:38 -0300
commit6b1c32bde545b9e47ab1fe83fdfb722ca6218393 (patch)
treeac8f75aa35fc81be9eaffe905ab498e7713b2f84 /extra/rsync
parent2c721caa534df76621bf07705ed0ea80efe44f8b (diff)
parent0020cc650ff973f269f23332e82fc097254d0adc (diff)
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts: community/ccze/PKGBUILD community/remind/PKGBUILD core/iw/PKGBUILD core/less/PKGBUILD extra/davfs2/PKGBUILD extra/ettercap/PKGBUILD extra/gtk-xfce-engine/PKGBUILD extra/imagemagick/PKGBUILD extra/kismet/PKGBUILD extra/libmp3splt/PKGBUILD extra/php/PKGBUILD extra/xfce4-verve-plugin/PKGBUILD multilib/lib32-glib2/PKGBUILD multilib/lib32-pcre/PKGBUILD multilib/wine/PKGBUILD staging/xorg-server/PKGBUILD
Diffstat (limited to 'extra/rsync')
-rw-r--r--extra/rsync/PKGBUILD25
1 files changed, 13 insertions, 12 deletions
diff --git a/extra/rsync/PKGBUILD b/extra/rsync/PKGBUILD
index 4805bafba..685558262 100644
--- a/extra/rsync/PKGBUILD
+++ b/extra/rsync/PKGBUILD
@@ -1,11 +1,11 @@
-# $Id: PKGBUILD 138832 2011-09-28 19:15:53Z angvp $
+# $Id: PKGBUILD 149915 2012-02-11 20:09:00Z ibiru $
# Maintainer: Angel Velasquez <angvp@archlinux.org>
# Contributor: Eric Belanger <eric@archlinux.org>
# Contributor: Judd Vinet <jvinet@zeroflux.org>
# Contributor: Daniel J Griffiths <ghost1227@archlinux.us>
pkgname=rsync
pkgver=3.0.9
-pkgrel=1
+pkgrel=2
pkgdesc="A file transfer program to keep remote files in sync"
arch=('i686' 'x86_64' 'mips64el')
url="http://samba.anu.edu.au/rsync/"
@@ -13,7 +13,7 @@ license=('GPL3')
depends=('acl')
backup=('etc/rsyncd.conf' 'etc/xinetd.d/rsync')
changelog=ChangeLog
-source=(http://rsync.samba.org/ftp/rsync/${pkgname}-${pkgver}.tar.gz \
+source=(http://rsync.samba.org/ftp/rsync/$pkgname-$pkgver.tar.gz \
rsyncd.conf rsyncd rsync.xinetd)
md5sums=('5ee72266fe2c1822333c407e1761b92b'
'4395c0591638349b1a7aeaaa4da1f03a'
@@ -25,17 +25,18 @@ sha1sums=('c64c8341984aea647506eb504496999fd968ddfc'
'fdb99785bc87ee13d77aa90dc1804f3f75dd7fc1')
build() {
- cd ${srcdir}/${pkgname}-${pkgver}
- ./prepare-source
+ cd "$srcdir/$pkgname-$pkgver"
+ ./prepare-source
./configure --prefix=/usr --with-included-popt \
- --enable-acl-support --enable-xattr-support
- make
+ --enable-acl-support --enable-xattr-support
+ make
}
package() {
- cd ${srcdir}/${pkgname}-${pkgver}
- make DESTDIR=${pkgdir} install
- install -Dm755 ../rsyncd ${pkgdir}/etc/rc.d/rsyncd
- install -Dm644 ../rsyncd.conf ${pkgdir}/etc/rsyncd.conf
- install -Dm644 ../rsync.xinetd ${pkgdir}/etc/xinetd.d/rsync
+ cd "$srcdir/$pkgname-$pkgver"
+ make DESTDIR="$pkgdir" install
+ install -Dm755 ../rsyncd "$pkgdir/etc/rc.d/rsyncd"
+ install -Dm644 ../rsyncd.conf "$pkgdir/etc/rsyncd.conf"
+ install -Dm644 ../rsync.xinetd "$pkgdir/etc/xinetd.d/rsync"
+ install -Dm755 support/rrsync "$pkgdir/usr/lib/rsync/rrsync"
}