# $Id: PKGBUILD 129459 2011-06-28 01:36:46Z stephane $ # Maintainer: Firmicus # Contributor: Tom K pkgname=mod_perl pkgver=2.0.5 pkgrel=5 pkgdesc="Apache module that embeds the Perl interpreter within the server" url="http://search.cpan.org/dist/${pkgname}/" depends=('perl' '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} }