aports/testing/perl-file-changenotify/APKBUILD
2025-03-20 16:03:19 +00:00

38 lines
1.2 KiB
Text

# Contributor: Wen Heping <wenheping2000@hotmail.com>
# Maintainer: Wen Heping <wenheping2000@hotmail.com>
pkgname=perl-file-changenotify
pkgver=0.31
pkgrel=0
#_pkgreal is used by apkbuild-cpan to find modules at MetaCpan
_pkgreal=File-ChangeNotify
pkgdesc="Watch for changes to files, cross-platform style"
url="https://metacpan.org/release/File-ChangeNotify/"
arch="noarch"
license="Artistic-2.0"
depends="perl perl-module-pluggable perl-module-runtime perl-moo perl-type-tiny perl-namespace-autoclean"
checkdepends="perl-test-requires perl-test-without-module"
subpackages="$pkgname-doc"
source="https://cpan.metacpan.org/authors/id/D/DR/DROLSKY/File-ChangeNotify-$pkgver.tar.gz"
builddir="$srcdir/$_pkgreal-$pkgver"
build() {
export CFLAGS=$(perl -MConfig -E 'say $Config{ccflags}')
PERL_MM_USE_DEFAULT=1 perl -I. Makefile.PL \
INSTALLDIRS=vendor \
NO_PACKLIST=1 \
NO_PERLLOCAL=1
make
}
check() {
export CFLAGS=$(perl -MConfig -E 'say $Config{ccflags}')
make test
}
package() {
make DESTDIR="$pkgdir" install
}
sha512sums="
0dc7c1c2a3887c09f59465a89f52c4c8a9426e96574fa4764fe90a5f1500541ddbcb233bfcd206c76e0b7dfedf2980b3dc54fab6b45608a5b6fb82143172b25b File-ChangeNotify-0.31.tar.gz
"