aboutsummaryrefslogtreecommitdiffstats
path: root/main/perl-file-next/APKBUILD
blob: 184c68bb25896daeff93eb1477b80889dedcd220 (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
# Contributor: Kiyoshi Aman <kiyoshi.aman@gmail.com>
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=perl-file-next
_pkgreal=File-Next
pkgver=1.10
pkgrel=0
pkgdesc="Perl module for taint-safe file-finding"
url="http://search.cpan.org/dist/File-Next/"
arch="noarch"
license="GPL PerlArtistic"
depends=
depends_dev=
makedepends="perl-dev"
subpackages="$pkgname-doc"
source="http://search.cpan.org/CPAN/authors/id/P/PE/PETDANCE/$_pkgreal-$pkgver.tar.gz"

_builddir="$srcdir/$_pkgreal-$pkgver"

build() {
	cd "$_builddir"
	PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor || return 1
	make || return 1
}

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

md5sums="dcaade658846c8100b0a5e43fae8920d  File-Next-1.10.tar.gz"