diff options
author | Francesco Colista <fcolista@alpinelinux.org> | 2016-08-26 14:52:50 +0000 |
---|---|---|
committer | Francesco Colista <fcolista@alpinelinux.org> | 2016-08-26 14:52:50 +0000 |
commit | c0baab02fe6c8cc9010bdcfaf768d34967eff108 (patch) | |
tree | 3b5e4e620e6bf3eb894d2968f56b90ad295f8012 /community/perl-module-install | |
parent | 8d3a43ff8de0122bb4df055902a748d0c9dccad8 (diff) | |
download | aports-c0baab02fe6c8cc9010bdcfaf768d34967eff108.tar.bz2 aports-c0baab02fe6c8cc9010bdcfaf768d34967eff108.tar.xz |
community/perl-module-install: moved from testing
Diffstat (limited to 'community/perl-module-install')
-rw-r--r-- | community/perl-module-install/APKBUILD | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/community/perl-module-install/APKBUILD b/community/perl-module-install/APKBUILD new file mode 100644 index 0000000000..64103a36b3 --- /dev/null +++ b/community/perl-module-install/APKBUILD @@ -0,0 +1,43 @@ +# Automatically generated by apkbuild-cpan, template 1 +# Maintainer: Francesco Colista <fcolista@alpinelinux.org> +pkgname=perl-module-install +_pkgreal=Module-Install +pkgver=1.16 +pkgrel=0 +pkgdesc="Perl module for Module-Install" +url="http://search.cpan.org/dist/Module-Install/" +arch="noarch" +license="GPL PerlArtistic" +cpandepends="" +cpanmakedepends="perl-file-remove perl-module-build perl-module-scandeps perl-yaml-tiny" +depends="$cpandepends" +makedepends="perl-dev $cpanmakedepends" +subpackages="$pkgname-doc" +source="http://search.cpan.org/CPAN/authors/id/E/ET/ETHER/$_pkgreal-$pkgver.tar.gz" + +_builddir="$srcdir/$_pkgreal-$pkgver" + +prepare() { + cd "$_builddir" + if [ -e Build.PL ]; then + perl Build.PL installdirs=vendor || return 1 + else + PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor || return 1 + fi +} + +build() { + cd "$_builddir" + export CFLAGS=`perl -MConfig -E 'say $Config{ccflags}'` + make && make test +} + +package() { + cd "$_builddir" + make DESTDIR="$pkgdir" install || return 1 + find "$pkgdir" \( -name perllocal.pod -o -name .packlist \) -delete +} + +md5sums="daec67c3950dcecaa155389b9bdfc1ed Module-Install-1.16.tar.gz" +sha256sums="afac1264255f4d822d44f84df1aa9affad207f9ae805e803d93c845fa120025e Module-Install-1.16.tar.gz" +sha512sums="479a3b1a3e489c100bcb25c9f90445abcc90d194238804849b7d3ca1fa171a625b99f8390ce8967e96b10e854d843d117c70e566f12309b3ccdf32113f006422 Module-Install-1.16.tar.gz" |