mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-22 19:50:05 +02:00
63 lines
1.4 KiB
Bash
63 lines
1.4 KiB
Bash
SUMMARY="UAX #14 Unicode Line Breaking Algorithm"
|
|
DESCRIPTION="Unicode::LineBreak performs Line Breaking Algorithm described in Unicode Standard \
|
|
Annex #14 [UAX #14]. East_Asian_Width informative property defined by Annex #11 [UAX #11] will \
|
|
be concerned to determine breaking positions."
|
|
HOMEPAGE="https://metacpan.org/pod/Unicode::LineBreak"
|
|
COPYRIGHT="2009-2018 Hatuka*nezumi - IKEDA Soji"
|
|
LICENSE="Artistic"
|
|
REVISION="1"
|
|
SOURCE_URI="https://cpan.metacpan.org/authors/id/N/NE/NEZUMI/Unicode-LineBreak-$portVersion.tar.gz"
|
|
CHECKSUM_SHA256="486762e4cacddcc77b13989f979a029f84630b8175e7fef17989e157d4b6318a"
|
|
SOURCE_DIR="Unicode-LineBreak-$portVersion"
|
|
|
|
ARCHITECTURES="all !x86_gcc2"
|
|
SECONDARY_ARCHITECTURES="x86"
|
|
|
|
PROVIDES="
|
|
unicode_linebreak$secondaryArchSuffix = $portVersion
|
|
"
|
|
if [ -n "$secondaryArchSuffix" ]; then
|
|
PROVIDES+="
|
|
unicode_linebreak = $portVersion
|
|
"
|
|
fi
|
|
REQUIRES="
|
|
haiku$secondaryArchSuffix
|
|
mime_charset
|
|
vendor_perl
|
|
lib:libsombok$secondaryArchSuffix
|
|
lib:libthai$secondaryArchSuffix
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku${secondaryArchSuffix}_devel
|
|
devel:libsombok$secondaryArchSuffix
|
|
devel:libthai$secondaryArchSuffix
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
cmd:gcc$secondaryArchSuffix
|
|
cmd:make
|
|
cmd:perl
|
|
cmd:pkg_config$secondaryArchSuffix
|
|
"
|
|
|
|
TEST_REQUIRES="
|
|
mime_charset
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
perl Makefile.PL PREFIX=$prefix
|
|
make
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
make pure_install
|
|
}
|
|
|
|
TEST()
|
|
{
|
|
make test
|
|
}
|