diff options
author | Leonardo Arena <rnalrd@alpinelinux.org> | 2013-12-24 09:23:49 +0000 |
---|---|---|
committer | Leonardo Arena <rnalrd@alpinelinux.org> | 2013-12-24 09:23:49 +0000 |
commit | 62b83d9b553795d5b539e83a207a1eb55a4806d2 (patch) | |
tree | 420dea2053300965e4f93aec0619e64c8394005d /main | |
parent | ddd37346242efca1d28f81e0ee0dd9ce6ab53ede (diff) | |
download | aports-62b83d9b553795d5b539e83a207a1eb55a4806d2.tar.bz2 aports-62b83d9b553795d5b539e83a207a1eb55a4806d2.tar.xz |
testing/perl-file-which: move to main
Diffstat (limited to 'main')
-rw-r--r-- | main/perl-file-which/APKBUILD | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/main/perl-file-which/APKBUILD b/main/perl-file-which/APKBUILD new file mode 100644 index 0000000000..b3167f970c --- /dev/null +++ b/main/perl-file-which/APKBUILD @@ -0,0 +1,37 @@ +# Automatically generated by apkbuild-cpan, template 1 +# Contributor: Francesco Colista <francesco.colista@gmail.com> +# Maintainer: Francesco Colista <francesco.colista@gmail.com> +pkgname=perl-file-which +_pkgreal=File-Which +pkgver=1.09 +pkgrel=0 +pkgdesc="Portable implementation of the "which" utility" +url="http://search.cpan.org/dist/File-Which/" +arch="noarch" +license="GPL PerlArtistic" +cpandepends="perl-test-script" +cpanmakedepends="" +depends="$cpandepends" +makedepends="perl-dev $cpanmakedepends" +subpackages="$pkgname-doc" +source="http://search.cpan.org/CPAN/authors/id/A/AD/ADAMK/$_pkgreal-$pkgver.tar.gz" + +_builddir="$srcdir/$_pkgreal-$pkgver" + +prepare() { + cd "$_builddir" + PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor +} + +build() { + cd "$_builddir" + make && make test +} + +package() { + cd "$_builddir" + make DESTDIR="$pkgdir" install || return 1 + find "$pkgdir" \( -name perllocal.pod -o -name .packlist \) -delete +} + +md5sums="b9429edaad7f45caafa4d458afcfd8af File-Which-1.09.tar.gz" |