diff options
Diffstat (limited to 'user/perl-class-tiny/APKBUILD')
-rw-r--r-- | user/perl-class-tiny/APKBUILD | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/user/perl-class-tiny/APKBUILD b/user/perl-class-tiny/APKBUILD index 2036473b2..ea2ad4615 100644 --- a/user/perl-class-tiny/APKBUILD +++ b/user/perl-class-tiny/APKBUILD @@ -1,32 +1,32 @@ # Contributor: A. Wilcox <awilfox@adelielinux.org> # Maintainer: Adélie Perl Team <adelie-perl@lists.adelielinux.org> pkgname=perl-class-tiny -_pkgname=Class-Tiny +_pkgreal=Class-Tiny +_author=DAGOLDEN +_au=${_author%%"${_author#??}"} +_a=${_author%%"${_author#?}"} pkgver=1.006 pkgrel=0 pkgdesc="Minimalist class construction for Perl" url="https://metacpan.org/release/Class-Tiny" arch="noarch" license="Apache-2.0" -depends="" +depends="perl" makedepends="perl-dev" subpackages="$pkgname-doc" -source="https://cpan.metacpan.org/authors/id/D/DA/DAGOLDEN/Class-Tiny-$pkgver.tar.gz" -builddir="$srcdir/Class-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 } |