forked from ports/contrib
20 lines
581 B
Plaintext
20 lines
581 B
Plaintext
|
# Description: match globbing patterns against text
|
||
|
# URL: https://search.mcpan.org/dist/Text-Glob
|
||
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
||
|
# Depends on:
|
||
|
|
||
|
name=p5-text-glob
|
||
|
version=0.11
|
||
|
release=1
|
||
|
source=(https://cpan.metacpan.org/authors/id/R/RC/RCLAMP/Text-Glob-$version.tar.gz)
|
||
|
|
||
|
build() {
|
||
|
cd Text-Glob-$version
|
||
|
unset PERL5LIB PERL_MM_OPT PERL_MB_OPT PERL_LOCAL_LIB_ROOT
|
||
|
export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps
|
||
|
perl Makefile.PL
|
||
|
make
|
||
|
make install INSTALLDIRS=vendor DESTDIR=$PKG
|
||
|
find $PKG \( -name '.packlist' -o -name '*.pod' \) -delete
|
||
|
}
|