diff options
author | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2012-02-13 01:08:38 -0300 |
---|---|---|
committer | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2012-02-13 01:08:38 -0300 |
commit | 6b1c32bde545b9e47ab1fe83fdfb722ca6218393 (patch) | |
tree | ac8f75aa35fc81be9eaffe905ab498e7713b2f84 /community/pound | |
parent | 2c721caa534df76621bf07705ed0ea80efe44f8b (diff) | |
parent | 0020cc650ff973f269f23332e82fc097254d0adc (diff) |
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts:
community/ccze/PKGBUILD
community/remind/PKGBUILD
core/iw/PKGBUILD
core/less/PKGBUILD
extra/davfs2/PKGBUILD
extra/ettercap/PKGBUILD
extra/gtk-xfce-engine/PKGBUILD
extra/imagemagick/PKGBUILD
extra/kismet/PKGBUILD
extra/libmp3splt/PKGBUILD
extra/php/PKGBUILD
extra/xfce4-verve-plugin/PKGBUILD
multilib/lib32-glib2/PKGBUILD
multilib/lib32-pcre/PKGBUILD
multilib/wine/PKGBUILD
staging/xorg-server/PKGBUILD
Diffstat (limited to 'community/pound')
-rw-r--r-- | community/pound/PKGBUILD | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/community/pound/PKGBUILD b/community/pound/PKGBUILD index 98d2af3dc..2c0dcf5c3 100644 --- a/community/pound/PKGBUILD +++ b/community/pound/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 24210 2010-08-23 09:28:35Z spupykin $ +# $Id: PKGBUILD 64351 2012-02-11 23:23:24Z allan $ # 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.5 -pkgrel=2 +pkgver=2.6 +pkgrel=1 pkgdesc="A reverse proxy, load balancer, and SSL wrapper" arch=('i686' 'x86_64' 'mips64el') url="http://www.apsis.ch/pound/index_html" @@ -17,7 +17,7 @@ source=(http://www.apsis.ch/pound/Pound-$pkgver.tgz pound.runit pound.cfg pound-2.5-openssl.patch) -md5sums=('8a39f5902094619afcda7d12d9d8342c' +md5sums=('8c913b527332694943c4c67c8f152071' '4df8548f106fca08323e8e4071beaa43' '716cc0bf334b594751bece24c7d1df2d' '8937808acd22c6391ebe4340af8df854' @@ -26,11 +26,14 @@ md5sums=('8a39f5902094619afcda7d12d9d8342c' build() { cd $srcdir/Pound-$pkgver # Patch to build against OpenSSL 1.0.0 (Thanks Fedora!) - patch -p1 -i $srcdir/pound-2.5-openssl.patch || return 1 +# patch -p1 -i $srcdir/pound-2.5-openssl.patch || return 1 ./configure --prefix=/usr --sysconfdir=/etc/pound - make || return 1 + make +} +package() { + cd $srcdir/Pound-$pkgver install -d $pkgdir/usr/sbin - make DESTDIR=$pkgdir install || return 1 + make DESTDIR=$pkgdir install chown root.root -R $pkgdir/usr install -d $pkgdir/etc/rc.d install -m0755 $srcdir/pound.init $pkgdir/etc/rc.d/pound |