summaryrefslogtreecommitdiff
path: root/extra/php-suhosin
diff options
context:
space:
mode:
authorParabola <dev@list.parabolagnulinux.org>2012-05-28 20:14:47 +0000
committerParabola <dev@list.parabolagnulinux.org>2012-05-28 20:14:47 +0000
commitedec45419def1b81bd663a2859684ef55ba56269 (patch)
treecaa3c2d5f4e55b38e7740a39d80a21507679c586 /extra/php-suhosin
parent483f7de4ab6a706517279a24d2efc969f4a1996d (diff)
Mon May 28 20:14:39 UTC 2012
Diffstat (limited to 'extra/php-suhosin')
-rw-r--r--extra/php-suhosin/PKGBUILD33
1 files changed, 0 insertions, 33 deletions
diff --git a/extra/php-suhosin/PKGBUILD b/extra/php-suhosin/PKGBUILD
deleted file mode 100644
index 45adeb4ee..000000000
--- a/extra/php-suhosin/PKGBUILD
+++ /dev/null
@@ -1,33 +0,0 @@
-# $Id: PKGBUILD 146961 2012-01-19 17:54:16Z pierre $
-# Maintainer: Pierre Schmitz <pierre@archlinux.de>
-
-pkgname=php-suhosin
-pkgver=0.9.33
-pkgrel=1
-arch=('i686' 'x86_64')
-pkgdesc='An advanced protection system for PHP installations'
-url='http://www.hardened-php.net/suhosin/'
-license='PHP'
-source=("http://download.suhosin.org/suhosin-${pkgver}.tgz"
- "http://download.suhosin.org/suhosin-${pkgver}.tgz.sig")
-depends=('php')
-conflicts=('php-suhosin-extension')
-replaces=('php-suhosin-extension')
-backup=('etc/php/conf.d/suhosin.ini')
-md5sums=('0ce498a02a8281e4274ea8e390c2b487'
- '6e9536cc71342bab0efb1e9a84f688a6')
-
-build() {
- cd ${srcdir}/suhosin-${pkgver}
- phpize
- ./configure --prefix=/usr --enable-suhosin
- make
-}
-
-package() {
- cd ${srcdir}/suhosin-${pkgver}
- make INSTALL_ROOT=${pkgdir} install
- # disable by default
- sed -i 's|extension = suhosin.so|;extension=suhosin.so|g' suhosin.ini
- install -D -m644 suhosin.ini ${pkgdir}/etc/php/conf.d/suhosin.ini
-}