* add perl-sub-exporter-progressive

This commit is contained in:
Alexander Baldeck 2024-09-10 14:05:47 +02:00
parent fa972ab143
commit 73304dbaed
3 changed files with 46 additions and 0 deletions

View File

@ -0,0 +1,13 @@
pkgbase = perl-sub-exporter-progressive
pkgdesc = Only use Sub::Exporter if you need it
pkgver = 0.001013
pkgrel = 11
url = https://search.cpan.org/dist/Sub-Exporter-Progressive
arch = any
license = PerlArtistic
license = GPL
options = !emptydirs
source = https://search.cpan.org/CPAN/authors/id/F/FR/FREW/Sub-Exporter-Progressive-0.001013.tar.gz
sha256sums = d535b7954d64da1ac1305b1fadf98202769e3599376854b2ced90c382beac056
pkgname = perl-sub-exporter-progressive

View File

@ -0,0 +1,3 @@
[perl-sub-exporter-progressive]
source = "cpan"
cpan = "Sub-Exporter-Progressive"

View File

@ -0,0 +1,30 @@
# POWER Maintainer: Alexander Baldeck <alex.bldck@gmail.com>
# Maintainer: Jonathan Steel <jsteel@aur.archlinux.org>
# Contributor: Alan Young <harleypig@gmail.com>
pkgname=perl-sub-exporter-progressive
pkgver=0.001013
pkgrel=11
pkgdesc="Only use Sub::Exporter if you need it"
arch=('any')
url="https://search.cpan.org/dist/Sub-Exporter-Progressive"
license=('PerlArtistic' 'GPL')
options=('!emptydirs')
source=(https://search.cpan.org/CPAN/authors/id/F/FR/FREW/Sub-Exporter-Progressive-$pkgver.tar.gz)
sha256sums=('d535b7954d64da1ac1305b1fadf98202769e3599376854b2ced90c382beac056')
build() {
cd "$srcdir"/Sub-Exporter-Progressive-$pkgver
perl Makefile.PL INSTALLDIRS=vendor
make
}
check() {
cd "$srcdir"/Sub-Exporter-Progressive-$pkgver
make test
}
package() {
cd "$srcdir"/Sub-Exporter-Progressive-$pkgver
make DESTDIR="$pkgdir" install
}