summaryrefslogtreecommitdiffstats
path: root/suphp/PKGBUILD
diff options
context:
space:
mode:
authorFlorian Pritz <bluewind@xinu.at>2012-12-16 11:51:24 +0100
committerFlorian Pritz <bluewind@xinu.at>2012-12-16 11:51:24 +0100
commitc6000c9d9949b3326fb82f02431899ab6774b960 (patch)
tree2453cd564b0f382f3d8ccd893df8ebe2e9aeda71 /suphp/PKGBUILD
parent453f0f12918af35bd8e1e5f049841360f37d62e4 (diff)
downloadaur-packages-c6000c9d9949b3326fb82f02431899ab6774b960.tar.gz
aur-packages-c6000c9d9949b3326fb82f02431899ab6774b960.tar.xz
big cleanup
Diffstat (limited to 'suphp/PKGBUILD')
-rw-r--r--suphp/PKGBUILD25
1 files changed, 0 insertions, 25 deletions
diff --git a/suphp/PKGBUILD b/suphp/PKGBUILD
deleted file mode 100644
index 9216d74..0000000
--- a/suphp/PKGBUILD
+++ /dev/null
@@ -1,25 +0,0 @@
-# Contributor: helios <helios@cyb0rg.org>
-pkgname=suphp
-pkgver=0.7.1
-pkgrel=1
-pkgdesc="A tool for executing PHP scripts with the permissions of their owners."
-arch=("i686" "x86_64")
-depends=("apr-util" "apache")
-url="http://www.suphp.org/"
-license=('GPL')
-backup=('etc/suphp/suphp.conf')
-source=(http://www.suphp.org/download/$pkgname-$pkgver.tar.gz suphp.conf)
-md5sums=('c172dd4f15a75f4dcb08ea97d4202bb8' '797fb760d6a8ae833959f6b5cb64a2c1')
-
-build() {
- cd "$startdir/src/$pkgname-$pkgver"
-
- ./configure --prefix=/usr --with-apr=/usr/bin/apr-1-config --sysconfdir=/etc/suphp --with-apache-user=http --with-setid-mode=owner --with-min-uid=33 --with-min-gid=33
- make || return 1
- make DESTDIR="$startdir/pkg" install
-
- install -D -m 644 ${startdir}/suphp.conf ${startdir}/pkg/etc/suphp/suphp.conf
- install -D -m 644 ${startdir}/src/$pkgname-$pkgver/doc/suphp.conf-example ${startdir}/pkg/etc/suphp/suphp.conf.example
-}
-
-# vim:set ts=2 sw=2 et: