initial import

This commit is contained in:
2025-06-22 20:39:04 -05:00
commit f8a70886f0
3428 changed files with 302546 additions and 0 deletions

29
perl-log-agent/PKGBUILD Normal file
View File

@@ -0,0 +1,29 @@
# Maintainer: Jesus E. <heckyel@riseup.net>
pkgname=perl-log-agent
_realname=Log-Agent
pkgver=1.004
pkgrel=1
pkgdesc="Perl module providing helper logging routines"
arch=('any')
license=('GPL-1' 'Artistic-2.0')
url='https://metacpan.org/release/Log-Agent'
depends=('perl-mailtools' 'perl')
options=(!emptydirs)
source=("https://cpan.metacpan.org/authors/id/M/MR/MROGASKI/${_realname}-${pkgver}.tar.gz"
"LICENSE")
sha512sums=('88724637484127934b10f508a66ed1b3edd7254e398788a8d0706e72e6ed0c4d120452bf1c6b4f8cce8eb5730b13402cb688a83123bdee0f0f8d66ef93a6aa80'
'c527bdebaf3baea4b74954e873a6bbef2d21bc79d8301386572402745fdb9b7d7eda09b078a2d34338256dc122b61e20ffe5494081606e2aac41997afb5c8aed')
build() {
cd Log-Agent-$pkgver
# install module in vendor directories.
perl Makefile.PL INSTALLDIRS=vendor
make
}
package() {
cd Log-Agent-$pkgver
make install DESTDIR="$pkgdir"
install -Dm 644 "${srcdir}/LICENSE" -t "$pkgdir/usr/share/licenses/$pkgname"
}