summaryrefslogtreecommitdiffstats
path: root/main/perl-parse-recdescent/APKBUILD
blob: e9931e70e7f93fe62403e1dee9fefaa47cb52590 (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
# 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/"
arch="x86 x86_64"
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
	find "$pkgdir" -name perllocal.pod -delete
}

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