summaryrefslogtreecommitdiff
path: root/testing/mod_perl/PKGBUILD
diff options
context:
space:
mode:
authorNicolas Reynolds <fauno@kiwwwi.com.ar>2011-06-02 10:50:51 -0300
committerNicolas Reynolds <fauno@kiwwwi.com.ar>2011-06-02 10:50:51 -0300
commit901d121a0b559ed0c285f6cf7daebd0e0081a327 (patch)
tree814faf33f5ac64cc28c07e45f56c240c93605746 /testing/mod_perl/PKGBUILD
parentd0fae3a9b2c0de7490049611767dc2a3d6e94899 (diff)
parente7b9c9697e6a50c3b9e78941fa95ba11c716d238 (diff)
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts: testing/mesa/PKGBUILD
Diffstat (limited to 'testing/mod_perl/PKGBUILD')
-rw-r--r--testing/mod_perl/PKGBUILD27
1 files changed, 27 insertions, 0 deletions
diff --git a/testing/mod_perl/PKGBUILD b/testing/mod_perl/PKGBUILD
new file mode 100644
index 000000000..33f4e7901
--- /dev/null
+++ b/testing/mod_perl/PKGBUILD
@@ -0,0 +1,27 @@
+# $Id: PKGBUILD 125232 2011-05-25 19:12:54Z foutrelis $
+# Maintainer: Firmicus <francois.archlinux.org>
+# Contributor: Tom K <tomk@runbox.com>
+
+pkgname=mod_perl
+pkgver=2.0.5
+pkgrel=2
+pkgdesc="Apache module that embeds the Perl interpreter within the server"
+url="http://search.cpan.org/dist/${_realname}/"
+depends=('perl=5.12.3' 'apache' 'db' 'apr-util')
+license=('APACHE')
+arch=('i686' 'x86_64')
+options=(!emptydirs)
+source=(http://search.cpan.org/CPAN/authors/id/P/PH/PHRED/${pkgname}-${pkgver}.tar.gz)
+md5sums=('03d01d135a122bd8cebd0cd5b185d674')
+
+build() {
+ cd ${srcdir}/${pkgname}-${pkgver}
+ # install module in vendor directories.
+ perl Makefile.PL INSTALLDIRS=vendor MP_APXS=/usr/sbin/apxs
+ make
+}
+
+package() {
+ cd ${srcdir}/${pkgname}-${pkgver}
+ make install DESTDIR=${pkgdir}
+}