diff options
Diffstat (limited to 'community/ucarp/PKGBUILD')
-rw-r--r-- | community/ucarp/PKGBUILD | 35 |
1 files changed, 12 insertions, 23 deletions
diff --git a/community/ucarp/PKGBUILD b/community/ucarp/PKGBUILD index a1996e1d6..17a8bc881 100644 --- a/community/ucarp/PKGBUILD +++ b/community/ucarp/PKGBUILD @@ -1,28 +1,23 @@ -# $Id: PKGBUILD 69498 2012-04-17 12:05:31Z seblu $ -# Maintainer: Sébastien Luttringer <seblu@aur.archlinux.org> +# $Id: PKGBUILD 83576 2013-02-03 13:21:29Z seblu $ +# Maintainer: Sébastien Luttringer <seblu@archlinux.org> pkgname=ucarp pkgver=1.5.2 -pkgrel=3 -pkgdesc='UCARP is a portable implementation of the CARP protocol' +pkgrel=4 +pkgdesc='Userspace implementation of the CARP protocol' arch=('i686' 'x86_64' 'mips64el') url='http://www.ucarp.org/project/ucarp' license=('GPL2') depends=('libpcap') optdepends=('iproute2') -backup=('etc/conf.d/ucarp') source=("http://download.pureftpd.org/pub/ucarp/ucarp-$pkgver.tar.gz" - 'ucarp.rc' - 'ucarp.conf' 'ucarp.service' 'ucarp.8' '01-fix-getopt.patch' '02-fix-downscript-on-error.c') md5sums=('e3caa733316a32c09e5d3817617e9145' - '11675170473c7e11131d90c3d64ff333' - '79c01b9ba580d2431997efb9df59cf5d' - '582d59cd969b6447a710f58bbaf28846' - '05b64a5daeb7aab45a2a59e0f4d83c8f' + '40fdef66560e3c98eb7c04adf7c31739' + '2ccfdc464b88c437b38bd0324cf1fef3' '3f20699aaf2ef8139dcd337f1e7f06ab' '09d26233c37956cf08e629554a91b8cd') @@ -40,28 +35,22 @@ build() { } package() { - cd $pkgname-$pkgver + pushd $pkgname-$pkgver make DESTDIR="$pkgdir" install - # install examples files install -D -m 644 examples/linux/vip-down.sh \ "$pkgdir/usr/share/doc/$pkgname/examples/vip-down.sh" install -D -m 644 examples/linux/vip-up.sh \ "$pkgdir/usr/share/doc/$pkgname/examples/vip-up.sh" - # install README install -D -m 644 README "$pkgdir/usr/share/doc/$pkgname/README" - - # add initscripts - cd .. - install -D -m 755 $pkgname.rc "${pkgdir}/etc/rc.d/$pkgname" - install -D -m 644 $pkgname.conf "${pkgdir}/etc/conf.d/$pkgname" - install -D -m 644 $pkgname.service \ - "${pkgdir}/usr/lib/systemd/system/$pkgname.service" - + popd # add manpage install -D -m 644 $pkgname.8 "${pkgdir}/usr/share/man/man8/$pkgname.8" + # systemd + install -D -m 644 $pkgname.service \ + "${pkgdir}/usr/lib/systemd/system/$pkgname.service" } -# vim:set ts=2 sw=2 ft=sh et: +# vim:set ts=2 sw=2 et: |