mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 15:47:15 +08:00
28 lines
584 B
Bash
28 lines
584 B
Bash
|
# Maintainer: abveritas@chakra-project.org
|
||
|
|
||
|
pkgname=perl-module-build
|
||
|
_pkgname=Module-Build
|
||
|
pkgver=0.4003
|
||
|
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=('ed5fe7e023af43b0722639b13ece8d2d')
|
||
|
|
||
|
build() {
|
||
|
cd $_pkgname-$pkgver
|
||
|
|
||
|
perl Build.PL installdirs=vendor
|
||
|
perl Build
|
||
|
}
|
||
|
|
||
|
package() {
|
||
|
cd $_pkgname-$pkgver
|
||
|
|
||
|
perl Build install destdir="$pkgdir"
|
||
|
}
|