diff options
Diffstat (limited to 'user/perl-io-tty')
-rw-r--r-- | user/perl-io-tty/APKBUILD | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/user/perl-io-tty/APKBUILD b/user/perl-io-tty/APKBUILD index d42b831a2..972526fed 100644 --- a/user/perl-io-tty/APKBUILD +++ b/user/perl-io-tty/APKBUILD @@ -1,6 +1,10 @@ # Contributor: Dan Theisen <djt@hxx.in> # Maintainer: Adélie Perl Team <adelie-perl@lists.adelielinux.org> pkgname=perl-io-tty +_pkgreal=IO-Tty +_author=TODDR +_au=${_author%%"${_author#??}"} +_a=${_author%%"${_author#?}"} pkgver=1.12 pkgrel=0 pkgdesc="Low-level allocate a pseudo-tty" @@ -10,22 +14,19 @@ license="Artistic-1.0-Perl" depends="" makedepends="perl-dev" subpackages="$pkgname-doc" -source="https://cpan.metacpan.org/authors/id/T/TO/TODDR/IO-Tty-$pkgver.tar.gz" -builddir="$srcdir/IO-Tty-$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 } |