summaryrefslogtreecommitdiffstats
path: root/testing/perl-fcgi/APKBUILD
blob: cb8f256b8eb3c27718cd1bc9bc2eaedb4754f448 (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
28
29
30
31
# Maintainer: Leonardo Arena <rnalrd@alpinelinux.org>
pkgname=perl-fcgi
_realname=FCGI
pkgver=0.72
pkgrel=0
pkgdesc="Perl Fast CGI module"
url="http://search.cpan.org/~flora/FCGI"
arch="all"
license="unknown"
depends=
depends_dev=
makedepends="perl-dev"
install=""
subpackages="$pkgname-doc"
source="http://search.cpan.org/CPAN/authors/id/F/FL/FLORA/$_realname-$pkgver.tar.gz"

_builddir="$srcdir/$_realname-$pkgver"
build() {
	cd "$_builddir"
        PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor || return 1
	make && make test || return 1
}

package() {
        cd "$_builddir"
	make DESTDIR="$pkgdir" install || return 1
	# creates collision among perl modules
        find "$pkgdir" -name perllocal.pod -delete
}

md5sums="7b793e177caa93d972c6fb7ebe7c7ae1  FCGI-0.72.tar.gz"