Files
haikuports/dev-perl/html_parser/html_parser-3.71.recipe
waddlesplash 4f180bdb94 Utilize the new "all" ARCHITECTURES keyword in most recipes. (#6189)
x86_64 is used as a baseline: the "x86_64" entry, whatever status it has,
is transformed into "all", and then the other entries in ARCHITECTURES
either dropped or rearranged appropriately.
2021-09-15 15:40:18 -04:00

46 lines
1.0 KiB
Bash

#FIXME: Appending installation info to /packages/html_parser-3.70-1/.self/lib/perl5/5.18.1/BePC-haiku/perllocal.pod
#FIXME: Warning: prerequisite HTML::Tagset 3 not found.
SUMMARY="Encode or decode strings with HTML entities"
DESCRIPTION="The HTML-Parser distribution is is a collection of perl modules \
that parse and extract information from HTML documents."
HOMEPAGE="https://metacpan.org/release/HTML-Parser"
COPYRIGHT="1995-2009 Gisle Aas
1999-2000 Michael A. Chase"
LICENSE="GNU GPL v1
Artistic"
REVISION="3"
SOURCE_URI="https://github.com/gisle/html-parser/archive/$portVersion.tar.gz"
CHECKSUM_SHA256="0ef2ec6ed99f80a344ce3bc93d5eff6dd8613f4a544fa4ffe44a823cfd19b851"
SOURCE_FILENAME="html_parser-$portVersion.tar.gz"
SOURCE_DIR="html-parser-$portVersion"
ARCHITECTURES="all"
PROVIDES="
html_parser = $portVersion
"
REQUIRES="
haiku
perl
"
BUILD_REQUIRES="
haiku_devel
"
BUILD_PREREQUIRES="
cmd:gcc
cmd:make
cmd:perl
"
BUILD()
{
perl Makefile.PL PREFIX=$prefix
make
}
INSTALL()
{
make install
}