mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 18:17:14 +08:00
43 lines
1.2 KiB
Bash
43 lines
1.2 KiB
Bash
# Platform packages for Chakra
|
|
|
|
pkgname=perl-file-listing
|
|
pkgver=6.04
|
|
pkgrel=1
|
|
pkgdesc="parse directory listing"
|
|
arch=(any)
|
|
license=(PerlArtistic GPL)
|
|
options=(!emptydirs)
|
|
depends=('perl>=5.8.8' 'perl-http-date>=6')
|
|
conflicts=('perl-libwww<6')
|
|
url="http://search.cpan.org/dist/File-Listing"
|
|
source=("http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/File-Listing-${pkgver}.tar.gz")
|
|
md5sums=('83f636b477741f3a014585bb9cc079a6')
|
|
sha512sums=('a84198bc82003daaf88ed23218e34a7a1552dcd2855a9563e9609ce5df167a8295043501534c31614854fc8dd9c04b4af27b4d7320112c613914f94c86c2eeb2')
|
|
_distdir="${srcdir}/File-Listing-${pkgver}"
|
|
|
|
build() {
|
|
( export PERL_MM_USE_DEFAULT=1 PERL5LIB="" \
|
|
PERL_AUTOINSTALL=--skipdeps \
|
|
PERL_MM_OPT="INSTALLDIRS=vendor DESTDIR='$pkgdir'" \
|
|
PERL_MB_OPT="--installdirs vendor --destdir '$pkgdir'" \
|
|
MODULEBUILDRC=/dev/null
|
|
|
|
cd "$_distdir"
|
|
/usr/bin/perl Makefile.PL
|
|
make
|
|
)
|
|
}
|
|
|
|
check() {
|
|
( export PERL_MM_USE_DEFAULT=1 PERL5LIB=""
|
|
cd "$_distdir"
|
|
make test
|
|
)
|
|
}
|
|
|
|
package() {
|
|
cd "$_distdir"
|
|
make DESTDIR="$pkgdir" install
|
|
find "$pkgdir" -name .packlist -o -name perllocal.pod -delete
|
|
}
|