diff options
-rw-r--r-- | user/perl-time-duration/APKBUILD | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/user/perl-time-duration/APKBUILD b/user/perl-time-duration/APKBUILD new file mode 100644 index 000000000..daf931ee5 --- /dev/null +++ b/user/perl-time-duration/APKBUILD @@ -0,0 +1,33 @@ +# Contributor: A. Wilcox <awilfox@adelielinux.org> +# Maintainer: Adélie Perl Team <adelie-perl@lists.adelielinux.org> +pkgname=perl-time-duration +pkgver=1.20 +pkgrel=0 +pkgdesc="Rounded or exact English expression of time durations in Perl" +url="https://metacpan.org/release/Time-Duration" +arch="noarch" +license="Artistic-1.0-Perl" +depends="" +makedepends="perl-dev" +subpackages="$pkgname-doc" +source="https://cpan.metacpan.org/authors/id/N/NE/NEILB/Time-Duration-$pkgver.tar.gz" +builddir="$srcdir/Time-Duration-$pkgver" + +build() { + cd "$builddir" + PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor + make +} + +check() { + cd "$builddir" + make test +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install + find "$pkgdir" \( -name perllocal.pod -o -name .packlist \) -delete +} + +sha512sums="74bdcbc2b65061ad30540a95467de24f552235cea2367a7770309d9ffefeb35717f438e4f7ebf6a1d63f338cd714ffe16b3f45808514995db9753d643892d5f9 Time-Duration-1.20.tar.gz" |