mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-22 11:40:06 +02:00
40 lines
770 B
Bash
40 lines
770 B
Bash
SUMMARY="A perl interface to ZIP archive files"
|
|
DESCRIPTION="The Archive::Zip module allows a Perl program to create, manipulate, read, and write \
|
|
Zip archive files."
|
|
HOMEPAGE="https://metacpan.org/pod/Archive::Zip"
|
|
COPYRIGHT="2000-2020 Ned Kon"
|
|
LICENSE="Artistic"
|
|
REVISION="1"
|
|
SOURCE_URI="https://cpan.metacpan.org/authors/id/P/PH/PHRED/Archive-Zip-$portVersion.tar.gz"
|
|
CHECKSUM_SHA256="984e185d785baf6129c6e75f8eb44411745ac00bf6122fb1c8e822a3861ec650"
|
|
SOURCE_DIR="Archive-Zip-$portVersion"
|
|
|
|
ARCHITECTURES="any"
|
|
|
|
PROVIDES="
|
|
archive_zip = $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}"
|
|
}
|