aports/main/perl-io-multiplex/APKBUILD
2024-02-25 15:59:05 +00:00

31 lines
910 B
Text

# Contributor: Leonardo Arena <rnalrd@alpinelinux.org>
# Maintainer: Leonardo Arena <rnalrd@alpinelinux.org>
pkgname=perl-io-multiplex
_pkgreal=IO-Multiplex
pkgver=1.16
pkgrel=5
pkgdesc="Perl module to manage IO on many file handles"
url="https://metacpan.org/pod/IO::Multiplex"
arch="noarch"
license="Artistic-1.0-Perl OR GPL-1.0-or-later"
depends="perl"
subpackages="$pkgname-doc"
source="https://cpan.metacpan.org/authors/id/B/BB/BBB/IO-Multiplex-$pkgver.tar.gz"
builddir="$srcdir/$_pkgreal-$pkgver"
build() {
PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
make
}
check() {
make test
}
package() {
make DESTDIR="$pkgdir" install
# creates file collision among perl modules
find "$pkgdir" -name perllocal.pod -delete
}
sha512sums="695462be217a107f734e214d2f0a00800962abac24cf4e30272376f5effa25584bc458377feed16b5cc7bab5858c00e547dc97d02962e57b2b8fa6e55df20fa6 IO-Multiplex-1.16.tar.gz"