mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 18:07:14 +08:00
30 lines
615 B
Bash
30 lines
615 B
Bash
# Platform Packages for Chakra, part of chakra-project.org
|
|
|
|
pkgname=perl-test-pod
|
|
pkgver=1.48
|
|
pkgrel=1
|
|
pkgdesc="Check for POD errors in files"
|
|
arch=('any')
|
|
url="http://search.cpan.org/dist/Test-Pod/"
|
|
license=('GPL' 'PerlArtistic')
|
|
depends=('perl')
|
|
options=('!emptydirs')
|
|
source=(http://search.cpan.org/CPAN/authors/id/D/DW/DWHEELER/Test-Pod-${pkgver}.tar.gz)
|
|
md5sums=('c6bfd00ccdcb417d68fb3c0a0ec884c8')
|
|
|
|
build() {
|
|
cd Test-Pod-${pkgver}
|
|
perl Build.PL installdirs=vendor
|
|
./Build
|
|
}
|
|
|
|
check() {
|
|
cd Test-Pod-${pkgver}
|
|
./Build test
|
|
}
|
|
|
|
package() {
|
|
cd Test-Pod-${pkgver}
|
|
./Build install destdir="${pkgdir}"
|
|
}
|