summaryrefslogtreecommitdiffstats
path: root/extra/perl-parse-recdescent/APKBUILD
blob: 8ee87e58b7dadc08a153cf15ef16ff55e3c01b45 (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
# Contributor: Leonardo Arena <rnalrd@gmail.com>
# Maintainer:  Leonardo Arena <rnalrd@gmail.com>
pkgname=perl-parse-recdescent
_realname=Parse-RecDescent
pkgver=1.96.0
pkgrel=0
pkgdesc="Generate Recursive-Descent Parsers"
url="http://search.cpan.org/~dconway/Parse-RecDescent-1.96.0/"
license="Unknown"
depends="perl"
makedepends="perl-dev"
install=
subpackages="$pkgname-doc"
source="http://search.cpan.org/CPAN/authors/id/D/DC/DCONWAY/$_realname-$pkgver.tar.gz"

build() {
	cd "$srcdir/$_realname-$pkgver"

	PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor || return 1
	make || return 1
	make DESTDIR="$pkgdir" install
	# creates file collision among perl modules
	rm $pkgdir/usr/lib/perl5/5.10.0/i686-linux/perllocal.pod
}

md5sums="373dc01e102d81d01a4fb1431c5ff3fb  Parse-RecDescent-1.96.0.tar.gz"