core/perl-module-build/PKGBUILD
2013-11-13 07:48:29 +00:00

29 lines
649 B
Bash

# Maintainer: Neophytos Kolokotronis <tetris4 AT gmail DOT com>
# Contributor: abveritas@chakra-project.org
pkgname=perl-module-build
_pkgname=Module-Build
pkgver=0.4008
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=('01675c01f6a42c528d02dc34cc5383bf')
build() {
cd $_pkgname-$pkgver
perl Build.PL installdirs=vendor
perl Build
}
package() {
cd $_pkgname-$pkgver
perl Build install destdir="$pkgdir"
}