diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2012-04-03 14:54:55 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2012-04-03 14:54:55 +0000 |
commit | b618c3d0693aec564c6746238fd05d94e31d3b76 (patch) | |
tree | 4a4834f3097bba25dba1adeba4324080c1b4bf7b /community-testing/keepalived/PKGBUILD | |
parent | 8cb5196780766f47b595410eed8ddbee2e8add08 (diff) |
Tue Apr 3 14:54:45 UTC 2012
Diffstat (limited to 'community-testing/keepalived/PKGBUILD')
-rw-r--r-- | community-testing/keepalived/PKGBUILD | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/community-testing/keepalived/PKGBUILD b/community-testing/keepalived/PKGBUILD deleted file mode 100644 index ad7fa29f4..000000000 --- a/community-testing/keepalived/PKGBUILD +++ /dev/null @@ -1,45 +0,0 @@ -# $Id$ -# Maintainer: Sébastien Luttringer <seblu@aur.archlinux.org> -# Contributor: Andrea Zucchelli <zukka77@gmail.com> - -pkgname=keepalived -pkgver=1.2.2 -pkgrel=3 -pkgdesc='Failover and monitoring daemon for LVS clusters' -arch=('i686' 'x86_64') -url='http://www.keepalived.org/' -license=('GPL2') -backup=('etc/keepalived/keepalived.conf' 'etc/conf.d/keepalived') -depends=('openssl' 'popt' 'libnl1') -source=("http://www.keepalived.org/software/$pkgname-$pkgver.tar.gz" - 'keepalived.rc' - 'keepalived.conf' - 'ip_vs_moved.patch') -md5sums=('f68327ca142616a8463d2d105db122cd' - 'baeb62a682c2b59d732cea84bf52cc87' - '9c8142da8730ad27a345587dea83ced7' - '87ee19c85adaedd3eb11bea8a5865d47') - -build() { - cd $pkgname-$pkgver - patch -p1 -i ../ip_vs_moved.patch - ./configure --prefix=/usr --sysconfdir=/etc - make -} - -package() { - cd $pkgname-$pkgver - make DESTDIR="$pkgdir" install - # clean pacakge init scripts - rm -r "$pkgdir/etc/rc.d/init.d" "$pkgdir/etc/sysconfig" - # move examples to /usr/share - install -d -m 755 "$pkgdir/usr/share/$pkgname" - mv "$pkgdir/etc/keepalived/samples" "$pkgdir/usr/share/$pkgname/samples" - - # add initscripts - install -D -m 755 ../$pkgname.rc "${pkgdir}/etc/rc.d/$pkgname" - install -D -m 644 ../$pkgname.conf "${pkgdir}/etc/conf.d/$pkgname" - -} - -# vim:set ts=2 sw=2 ft=sh et: |