Files
extra/perl-ipc-system-simple/PKGBUILD
2025-06-22 20:39:04 -05:00

26 lines
754 B
Bash

# Maintainer: Jesus E. <heckyel@riseup.net>
pkgname=perl-ipc-system-simple
pkgver=1.25
pkgrel=1
pkgdesc="Run commands simply, with detailed diagnostics"
arch=('any')
url='https://search.cpan.org/dist/IPC-System-Simple'
license=('GPL-1')
depends=('perl')
options=('!emptydirs')
source=("https://search.cpan.org/CPAN/authors/id/P/PJ/PJF/IPC-System-Simple-$pkgver.tar.gz")
sha512sums=('fda275786605eb80acaa6062cc51c32aa0e84f150e7ca7afcfe874f088ce7b8f9a97669e91bec24fdb05426db8b0f05552aa8853e44b08996e625281d1892f72')
build() {
cd IPC-System-Simple-$pkgver
perl Makefile.PL INSTALLDIRS=vendor
make
}
package() {
cd IPC-System-Simple-$pkgver
make DESTDIR="$pkgdir" install
install -Dm644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}/"
}