core/perl-module-build/PKGBUILD
2016-10-27 07:36:39 +01:00

26 lines
540 B
Bash

pkgname=perl-module-build
_pkgname=Module-Build
pkgver=0.4220
pkgrel=1
pkgdesc="Build and install Perl modules"
arch=('x86_64')
license=('PerlArtistic' 'GPL')
url='http://search.cpan.org/dist/Module-Build'
depends=('perl')
options=('!emptydirs')
source=("http://search.cpan.org/CPAN/authors/id/L/LE/LEONT/$_pkgname-$pkgver.tar.gz")
md5sums=('9df204e188462a4410d496f316c2c531')
build() {
cd $_pkgname-$pkgver
perl Build.PL installdirs=vendor
perl Build
}
package() {
cd $_pkgname-$pkgver
perl Build install destdir="$pkgdir"
}