summaryrefslogtreecommitdiff
path: root/testing/mod_perl/PKGBUILD
blob: 33f4e7901bc37fbb198209d6b308c5484b224019 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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}
}