diff options
author | A. Wilcox <awilcox@wilcox-tech.com> | 2020-02-16 21:13:53 +0000 |
---|---|---|
committer | A. Wilcox <awilcox@wilcox-tech.com> | 2020-02-16 21:13:53 +0000 |
commit | dbbc5072f5c2b428de142604b9c1c70b4159a845 (patch) | |
tree | a3956d8d7cc74f020d042e34eb808a49ac4860c9 /user/perl-hash-defhash/APKBUILD | |
parent | 9d8715562c846a78b9679d405d136e05a2fa330f (diff) | |
parent | ca5ed52ede018f31ebfd896d367f589675e62b7e (diff) | |
download | packages-dbbc5072f5c2b428de142604b9c1c70b4159a845.tar.gz packages-dbbc5072f5c2b428de142604b9c1c70b4159a845.tar.bz2 packages-dbbc5072f5c2b428de142604b9c1c70b4159a845.tar.xz packages-dbbc5072f5c2b428de142604b9c1c70b4159a845.zip |
Merge branch 'bumps.aerdan.20200214' into 'master'
Bumps for packages owned by Kiyoshi Aman as of 15 Feb 2020
See merge request adelie/packages!400
Diffstat (limited to 'user/perl-hash-defhash/APKBUILD')
-rw-r--r-- | user/perl-hash-defhash/APKBUILD | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/user/perl-hash-defhash/APKBUILD b/user/perl-hash-defhash/APKBUILD new file mode 100644 index 000000000..d1ef8a207 --- /dev/null +++ b/user/perl-hash-defhash/APKBUILD @@ -0,0 +1,34 @@ +# Contributor: Adélie Perl Team <adelie-perl@lists.adelielinux.org> +# Maintainer: Adélie Perl Team <adelie-perl@lists.adelielinux.org> +pkgname=perl-hash-defhash +_pkgreal=Hash-DefHash +_author=PERLANCAR +_au=${_author%%"${_author#??}"} +_a=${_author%%"${_author#?}"} +pkgver=0.071 +pkgrel=0 +pkgdesc="Perl module for providing an OO interface to hashes" +url="https://metacpan.org/pod/Hash::DefHash" +arch="noarch" +license="Artistic-2.0 OR GPL-2.0-only" +depends="perl perl-string-trim-more" +makedepends="perl-dev" +subpackages="$pkgname-doc" +source="https://cpan.metacpan.org/authors/id/$_a/$_au/$_author/$_pkgreal-$pkgver.tar.gz" +builddir="$srcdir/Hash-DefHash-$pkgver" + +build() { + PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor + make +} + +check() { + make test +} + +package() { + make DESTDIR="$pkgdir" install + find "$pkgdir" \( -name perllocal.pod -o -name .packlist \) -delete +} + +sha512sums="0ab03b03f3269e4afa5027335cfbae5cf24023762268eebdbff6e086bb7c5cf2089b96cf7ee69b400afa29b98212d9441701a297a8c9cc5ac76267cf764d92cf Hash-DefHash-0.071.tar.gz" |