Files
haikuports/dev-perl/ipc_system_simple/ipc_system_simple-1.30.recipe
2023-09-08 13:21:14 +00:00

41 lines
960 B
Bash

SUMMARY="Run commands simply, with detailed diagnostic"
DESCRIPTION="Calling Perl's in-built system() function is easy, determining if it was successful \
is hard. Let's face it, $? isn't the nicest variable in the world to play with, and even if you \
do check it, producing a well-formatted error string takes a lot of work."
HOMEPAGE="https://metacpan.org/pod/IPC::System::Simple"
COPYRIGHT="2020 by Paul Fenwick"
LICENSE="Artistic"
REVISION="1"
SOURCE_URI="https://cpan.metacpan.org/authors/id/J/JK/JKEENAN/IPC-System-Simple-$portVersion.tar.gz"
CHECKSUM_SHA256="22e6f5222b505ee513058fdca35ab7a1eab80539b98e5ca4a923a70a8ae9ba9e"
SOURCE_DIR="IPC-System-Simple-$portVersion"
ARCHITECTURES="any"
PROVIDES="
ipc_system_simple = $portVersion
"
REQUIRES="
haiku
vendor_perl
"
BUILD_REQUIRES="
haiku_devel
"
BUILD_PREREQUIRES="
cmd:make
cmd:perl
"
BUILD()
{
perl Makefile.PL PREFIX=$prefix
make
}
INSTALL()
{
make install DESTDIR="${DESTDIR}"
}