mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
26 lines
888 B
Bash
26 lines
888 B
Bash
# Maintainer: Douglas Soares de Andrade <dsa@aur.archlinux.org>
|
|
# Contributor: Roberto Alsina <ralsina@kde.org>
|
|
|
|
pkgname=pound
|
|
pkgver=2.4.4
|
|
pkgrel=2
|
|
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')
|
|
source=(http://www.apsis.ch/pound/Pound-$pkgver.tgz pound.init pound.runit)
|
|
|
|
build() {
|
|
cd $startdir/src/Pound-$pkgver
|
|
./configure --prefix=/usr --sysconfdir=/etc/pound
|
|
make || return 1
|
|
install -d $startdir/pkg/usr/sbin
|
|
make DESTDIR=$startdir/pkg install || return 1
|
|
chown root.root -R $startdir/pkg/usr
|
|
install -d $startdir/pkg/etc/rc.d
|
|
install -m0755 ../pound.init $startdir/pkg/etc/rc.d/pound
|
|
install -d $startdir/pkg/etc/sv
|
|
install -d $startdir/pkg/etc/sv/pound
|
|
install -m0755 ../pound.runit $startdir/pkg/etc/sv/pound/run
|
|
}
|