mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-10 22:00:09 +02:00
69 lines
1.6 KiB
Plaintext
69 lines
1.6 KiB
Plaintext
SUMMARY="A CSS parser and selection engine"
|
|
DESCRIPTION="
|
|
LibCSS is a CSS (Cascading Style Sheet) parser and selection engine.
|
|
"
|
|
HOMEPAGE="http://www.netsurf-browser.org/projects/libcss/"
|
|
SRC_URI="http://download.netsurf-browser.org/libs/releases/libcss-0.3.0-src.tar.gz"
|
|
CHECKSUM_SHA256="4065dbfdfc9926e14a2f0f2c600fc72abac97bd20769ac6a908ac50226e95e1a"
|
|
REVISION="1"
|
|
LICENSE="MIT"
|
|
COPYRIGHT="2007-2014 J-M Bell"
|
|
|
|
ARCHITECTURES="x86_gcc2 ?x86 ?x86_64"
|
|
SECONDARY_ARCHITECTURES="x86_gcc2 x86"
|
|
|
|
PROVIDES="
|
|
libcss$secondaryArchSuffix = $portVersion
|
|
lib:libcss$secondaryArchSuffix = $portVersion
|
|
"
|
|
|
|
REQUIRES="
|
|
haiku$secondaryArchSuffix
|
|
lib:libparserutils${secondaryArchSuffix}
|
|
lib:libwapcaplet${secondaryArchSuffix}
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku${secondaryArchSuffix}_devel
|
|
devel:libparserutils${secondaryArchSuffix} >= 0.1.1
|
|
devel:libwapcaplet${secondaryArchSuffix} >= 0.1.1
|
|
netsurf_buildsystem >= 0
|
|
|
|
devel:libiconv
|
|
"
|
|
|
|
BUILD_PREREQUIRES="
|
|
cmd:gcc$secondaryArchSuffix
|
|
cmd:ld$secondaryArchSuffix
|
|
cmd:make
|
|
cmd:perl
|
|
cmd:pkg_config
|
|
"
|
|
|
|
PATCHES="libcss-0.3.0.patchset"
|
|
BUILD()
|
|
{
|
|
make PREFIX=$prefix NSSHARED=/system/data/netsurf-buildsystem
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
make install PREFIX=$prefix NSSHARED=/system/data/netsurf-buildsystem
|
|
mkdir -p $prefix/develop/lib
|
|
|
|
prepareInstalledDevelLib libcss
|
|
fixPkgconfig libcss
|
|
packageEntries devel $developDir
|
|
}
|
|
|
|
TEST()
|
|
{
|
|
make test PREFIX=$prefix NSSHARED=/system/data/netsurf-buildsystem \
|
|
LDFLAGS="-liconv -lwapcaplet -lparserutils"
|
|
}
|
|
|
|
PROVIDES_devel="
|
|
libcss${secondaryArchSuffix}_devel = $portVersion
|
|
devel:libcss$secondaryArchSuffix = $portVersion
|
|
"
|