contrib/p5-text-csv-xs/Pkgfile

26 lines
565 B
Plaintext
Raw Normal View History

2010-12-27 04:10:59 +01:00
# Description: Perl comma-separated values manipulation routines.
2020-02-01 11:33:32 +01:00
# URL: https://metacpan.org/release/Text-CSV_XS
2014-11-10 13:28:07 +01:00
# Maintainer: Danny Rawlins, crux at romster dot me
name=p5-text-csv-xs
2022-02-05 16:28:36 +01:00
version=1.47
release=1
2021-03-25 09:17:10 +01:00
source=(https://www.cpan.org/modules/by-module/Text/Text-CSV_XS-$version.tgz)
build() {
2015-03-06 09:43:06 +01:00
cd Text-CSV_XS-$version
2015-03-06 09:43:06 +01:00
perl Makefile.PL
make OPTIMIZE="$CFLAGS"
make DESTDIR=$PKG install
find $PKG -type f \( \
-name '.packlist' -o \
-name '*.bs' -o \
-name 'autosplit.ix' -o \
-name 'perllocal.pod' \) -delete
find $PKG -depth -empty -delete
}