summaryrefslogtreecommitdiff
path: root/community/keepalived/PKGBUILD
blob: 79361ec90de78c18c6e94d7d9512cc4f9b35527a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# $Id$
# Maintainer: Sebastien Luttringer <seblu+arch@seblu.net
# Contributor: Andrea Zucchelli <zukka77@gmail.com>

pkgname=keepalived
pkgver=1.2.2
pkgrel=1
pkgdesc='implements an independent VRRPv2 stack and a userspace daemon for LVS cluster nodes healthchecks and LVS directors failover'
arch=('i686' 'x86_64')
url='http://www.keepalived.org/'
license=('GPL2')
backup=('etc/keepalived/keepalived.conf' 'etc/conf.d/keepalived')
depends=('openssl' 'popt' 'libnl')
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() {
  # add initscripts
  install -D -m 755 $pkgname.rc "${pkgdir}/etc/rc.d/$pkgname"
  install -D -m 644 $pkgname.conf "${pkgdir}/etc/conf.d/$pkgname"

  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"
}

# vim:set ts=2 sw=2 ft=sh et: