Files
haikuports/dev-perl/xml_parser/xml_parser-2.44.recipe
2018-02-12 10:42:44 +01:00

46 lines
1.0 KiB
Bash

SUMMARY="A perl module for parsing XML documents"
DESCRIPTION="XML-Parser - A perl module for parsing XML documents."
HOMEPAGE="http://search.cpan.org/~toddr/XML-Parser-2.44/"
COPYRIGHT="1998-2000 Larry Wall and Clark Cooper"
LICENSE="Artistic"
REVISION="7"
SOURCE_URI="http://search.cpan.org/CPAN/authors/id/T/TO/TODDR/XML-Parser-$portVersion.tar.gz"
CHECKSUM_SHA256="1ae9d07ee9c35326b3d9aad56eae71a6730a73a116b9fe9e8a4758b7cc033216"
SOURCE_DIR="XML-Parser-$portVersion"
ARCHITECTURES="x86 x86_gcc2 x86_64"
PROVIDES="
xml_parser = $portVersion
"
REQUIRES="
haiku
lib:libexpat
vendor_perl
"
BUILD_REQUIRES="
haiku_devel
devel:libexpat
cmd:perl
"
BUILD_PREREQUIRES="
cmd:gcc
cmd:make
"
# TODO: Remove hardcoded paths. The following shows how to get the the file path:
#find /boot/common/lib/perl5 -type f -name unixish.h | grep -FzZ BePC-haiku/CORE/unixish.h
BUILD()
{
perl Makefile.PL PREFIX=$prefix
sed -i 's/-fstack-protector//g' Expat/Makefile
make
}
INSTALL()
{
make install DESTDIR="${DESTDIR}"
}