# $Id: PKGBUILD 74779 2012-08-04 01:16:35Z seblu $ # Maintainer: Sébastien Luttringer # Contributor: Andrea Zucchelli pkgname=keepalived pkgver=1.2.4 pkgrel=1 pkgdesc='Failover and monitoring daemon for LVS clusters' arch=('i686' 'x86_64' 'mips64el') 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.service' 'keepalived.conf') md5sums=('86d39fb62be4e2eef4417af4298dec48' '0d7ea6296bce403a5d24be305a0a9d73' '7a327df915700dcd45a049d099c9c42b' '9c8142da8730ad27a345587dea83ced7') build() { cd $pkgname-$pkgver ./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 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" } # vim:set ts=2 sw=2 ft=sh et: