contrib/p5-text-csv-xs/Pkgfile
2014-11-10 23:28:51 +11:00

29 lines
698 B
Plaintext

# Description: Perl comma-separated values manipulation routines.
# URL: http://search.cpan.org/~hmbrand/Text-CSV_XS-0.94/CSV_XS.pm
# Maintainer: Danny Rawlins, crux at romster dot me
# Packager: Danny Rawlins, crux at romster dot me
name=p5-text-csv-xs
version=1.00
release=1
source=(http://search.cpan.org/CPAN/authors/id/H/HM/HMBRAND/Text-CSV_XS-$version.tgz)
build() {
cd Text-CSV_XS-$version
perl Makefile.PL
make OPTIMIZE="$CFLAGS"
make DESTDIR=$PKG install
# Remove perlcrap
find $PKG -type f \( \
-name '.packlist' -o \
-name '*.bs' -o \
-name 'autosplit.ix' -o \
-name 'perllocal.pod' \) -delete
# Remove empty directories
find $PKG -depth -empty -delete
}