2025-08-09 22:17:27 +02:00

39 lines
859 B
Bash

# Maintainer: Alexey Pavlov <alexpux@gmail.com>
_realname=Probe-Perl
pkgname=perl-${_realname}
pkgver=0.03
pkgrel=4
pkgdesc="Information about the currently running perl"
arch=('any')
url="https://metacpan.org/dist/Probe-Perl/"
msys2_references=(
"purl: pkg:cpan/KWILLIAMS/Probe-Perl"
)
groups=('perl-modules')
depends=('perl')
license=('PerlArtistic' 'GPL')
options=('!emptydirs')
source=("https://www.cpan.org/authors/id/K/KW/KWILLIAMS/${_realname}-${pkgver}.tar.gz")
sha256sums=('d9e4d21e2e77638559045fa09046b1b6fff6c403b949929db213e30abe8a3c31')
prepare() {
cd "${srcdir}/${_realname}-${pkgver}"
}
build() {
cd "${srcdir}/${_realname}-${pkgver}"
perl Makefile.PL INSTALLDIRS=vendor
make
}
check() {
cd "${srcdir}/${_realname}-${pkgver}"
make test
}
package() {
cd "${srcdir}/${_realname}-${pkgver}"
make DESTDIR="$pkgdir" install
}