archlinux-pkgbuilds/perl-dbd-csv/PKGBUILD

36 lines
780 B
Bash
Raw Normal View History

# Maintainer: Cedric Girard <girard.cedric@gmail.com>
_author=HMBRAND
_perlmod=DBD-CSV
pkgname=perl-dbd-csv
2015-03-17 11:17:49 +01:00
pkgver=0.48
pkgrel=1
pkgdesc="DBI driver for CSV files"
arch=('any')
url="http://search.cpan.org/~$_author/$_perlmod/"
license=('GPL' 'PerlArtistic')
2013-03-25 11:42:15 +01:00
depends=('perl>=5.10.0'
2013-08-13 14:17:03 +02:00
'perl-dbi>=1.628'
'perl-text-csv-xs>=1.01'
'perl-sql-statement>=1.405'
2013-03-25 11:42:15 +01:00
)
options=(!emptydirs)
source=(http://cpan.perl.org/modules/by-authors/id/H/HM/$_author/$_perlmod-$pkgver.tgz)
2015-03-17 11:17:49 +01:00
md5sums=('11391a868171dfe493f0a907d8c33596')
build() {
cd "$srcdir/$_perlmod-$pkgver"
# Install module in vendor directories.
PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
make
}
package() {
cd "$srcdir/$_perlmod-$pkgver"
make install DESTDIR="$pkgdir/"
}
# vim:set ts=2 sw=2 et: