mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 18:07:14 +08:00
26 lines
540 B
Bash
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"
|
|
}
|