mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-05 22:48:55 +02:00
82 lines
2.1 KiB
Plaintext
82 lines
2.1 KiB
Plaintext
SUMMARY="XSLT C library developed for the GNOME project"
|
|
HOMEPAGE="http://www.xmlsoft.org/"
|
|
LICENSE="MIT"
|
|
COPYRIGHT="2001-2002 Daniel Veillard. All Rights Reserved."
|
|
SRC_URI="ftp://xmlsoft.org/libxml2/libxslt-1.1.28.tar.gz"
|
|
CHECKSUM_MD5="9667bf6f9310b957254fdcf6596600b7"
|
|
REVISION="2"
|
|
ARCHITECTURES="x86_gcc2 x86"
|
|
SECONDARY_ARCHITECTURES="x86_gcc2 x86"
|
|
|
|
PROVIDES="
|
|
libxslt$secondaryArchSuffix = $portVersion
|
|
lib:libxslt$secondaryArchSuffix = $portVersion
|
|
lib:libexslt$secondaryArchSuffix = $portVersion
|
|
cmd:xslt_config$secondaryArchSuffix = $portVersion
|
|
cmd:xsltproc$secondaryArchSuffix = $portVersion
|
|
"
|
|
|
|
REQUIRES="
|
|
haiku${secondaryArchSuffix} >= $haikuVersion
|
|
lib:libxml2$secondaryArchSuffix
|
|
lib:libz$secondaryArchSuffix
|
|
"
|
|
BUILD_REQUIRES="
|
|
devel:libxml2$secondaryArchSuffix
|
|
devel:libz$secondaryArchSuffix
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
haiku_devel >= $haikuVersion
|
|
haiku${secondaryArchSuffix}_devel >= $haikuVersion
|
|
cmd:autoconf
|
|
cmd:automake
|
|
cmd:libtoolize
|
|
cmd:gcc$secondaryArchSuffix
|
|
cmd:make
|
|
cmd:sed
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
libtoolize --force --copy --install
|
|
aclocal
|
|
autoconf
|
|
automake
|
|
|
|
runConfigure ./configure
|
|
make $jobArgs
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
make install
|
|
|
|
prepareInstalledDevelLibs libxslt
|
|
prepareInstalledDevelLibs libexslt
|
|
fixPkgconfig
|
|
|
|
# devel package
|
|
packageEntries devel $developDir
|
|
}
|
|
|
|
DESCRIPTION="
|
|
Libxslt is the XSLT C library developed for the GNOME project. XSLT itself
|
|
is a an XML language to define transformation for XML. Libxslt is based on
|
|
libxml2 the XML C library developed for the GNOME project. It also
|
|
implements most of the EXSLT set of processor-portable extensions functions
|
|
and some of Saxon's evaluate and expressions extensions.
|
|
|
|
People can either embed the library in their application or use xsltproc
|
|
the command line processing tool. This library is free software and can be
|
|
reused in commercial applications.
|
|
"
|
|
|
|
PROVIDES_devel="
|
|
libxslt${secondaryArchSuffix}_devel = $portVersion
|
|
devel:libxslt${secondaryArchSuffix} = $portVersion compat >= 1
|
|
devel:libexslt${secondaryArchSuffix} = $portVersion compat >= 1
|
|
"
|
|
REQUIRES_devel="
|
|
libxslt${secondaryArchSuffix} == $portVersion base
|
|
"
|