diff options
Diffstat (limited to 'user/perl-path-tiny/APKBUILD')
-rw-r--r-- | user/perl-path-tiny/APKBUILD | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/user/perl-path-tiny/APKBUILD b/user/perl-path-tiny/APKBUILD index 0f32e49eb..6a88deb6c 100644 --- a/user/perl-path-tiny/APKBUILD +++ b/user/perl-path-tiny/APKBUILD @@ -1,6 +1,10 @@ # Contributor: Dan Theisen <djt@hxx.in> # Maintainer: Adélie Perl Team <adelie-perl@lists.adelielinux.org> pkgname=perl-path-tiny +_pkgreal=Path-Tiny +_author=DAGOLDEN +_au=${_author%%"${_author#??}"} +_a=${_author%%"${_author#?}"} pkgver=0.108 pkgrel=0 pkgdesc="File path utility" @@ -8,26 +12,22 @@ url="https://metacpan.org/pod/Path::Tiny" arch="noarch" license="Apache-2.0" depends="perl" -makedepends="perl-dev" +makedepends="" checkdepends="perl-test-mockrandom" -install="" subpackages="$pkgname-doc" -source="https://cpan.metacpan.org/authors/id/D/DA/DAGOLDEN/Path-Tiny-$pkgver.tar.gz" -builddir="$srcdir/Path-Tiny-$pkgver" +source="https://cpan.metacpan.org/authors/id/$_a/$_au/$_author/$_pkgreal-$pkgver.tar.gz" +builddir="$srcdir/$_pkgreal-$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 } |