perl-module-build 0.4234-1

This commit is contained in:
xhaa123 2024-04-30 18:52:45 +08:00
commit f6ea16a6ad

31
PKGBUILD Normal file
View File

@ -0,0 +1,31 @@
# This is an example PKGBUILD file. Use this as a start to creating your own,
# and remove these comments. For more information, see 'man PKGBUILD'.
# NOTE: Please fill out the license field for your package! If it is unknown,
# then please put 'unknown'.
# Maintainer: Future Linux Team <future_linux@163.com>
pkgname=perl-module-build
pkgver=0.4234
pkgrel=1
pkgdesc="Build, test, and install Perl modules"
arch=('x86_64')
url="https://search.cpan.org/dist/Module-Build"
license=('PerlArtistic' 'GPL')
depends=('perl' 'perl-inc-latest')
options=('!emptydirs')
source=(https://cpan.metacpan.org/authors/id/L/LE/LEONT/Module-Build-${pkgver}.tar.gz)
sha256sums=(66aeac6127418be5e471ead3744648c766bd01482825c5b66652675f2bc86a8f)
build() {
cd Module-Build-${pkgver}
perl Build.PL installdirs=vendor
perl Build
}
package() {
cd Module-Build-${pkgver}
perl Build install destdir=${pkgdir}
}