summaryrefslogtreecommitdiff
path: root/community/pound/PKGBUILD
blob: 2f66f08923b61e653d19fdfc41ba50f4cc54e844 (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
# $Id: PKGBUILD 91955 2013-05-30 09:43:54Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Maintainer: Douglas Soares de Andrade <dsa@aur.archlinux.org>
# Contributor: Roberto Alsina <ralsina@kde.org>

pkgname=pound
pkgver=2.6
pkgrel=6
pkgdesc="A reverse proxy, load balancer, and SSL wrapper"
arch=('i686' 'x86_64')
url="http://www.apsis.ch/pound/index_html"
license=('GPL')
depends=('pcre' 'openssl')
backup=(etc/pound/pound.cfg)
source=(http://www.apsis.ch/pound/Pound-$pkgver.tgz
	pound.runit
	pound.service
	pound.cfg)
md5sums=('8c913b527332694943c4c67c8f152071'
         '2a555ee5871a849cb1f6e6ba2ff054df'
         'c0d0726a96dfda0e83843362e401b3dc'
         '8937808acd22c6391ebe4340af8df854')

build() {
  cd $srcdir/Pound-$pkgver
  ./configure --prefix=/usr --sysconfdir=/etc/pound --sbindir=/usr/bin
  make
}

package() {
  cd $srcdir/Pound-$pkgver
  install -d $pkgdir/usr/sbin
  make DESTDIR=$pkgdir install 
  chown root.root -R $pkgdir/usr
  install -d $pkgdir/etc/sv
  install -d $pkgdir/etc/sv/pound
  install -m0755 $srcdir/pound.runit $pkgdir/etc/sv/pound/run
  install -D -m0644 $srcdir/pound.cfg $pkgdir/etc/pound/pound.cfg
  install -Dm0644 $srcdir/$pkgname.service $pkgdir/usr/lib/systemd/system/$pkgname.service
  rmdir $pkgdir/usr/sbin
}