Files
haikuports/dev-libs/expat/expat-2.2.5.recipe
2017-11-07 22:03:58 +01:00

82 lines
1.7 KiB
Bash

SUMMARY="XML parser toolkit"
DESCRIPTION="Expat is an XML parser library written in C. It is a \
stream-oriented parser in which an application registers handlers for things \
the parser might find in the XML document (like start tags)."
HOMEPAGE="http://expat.sourceforge.net/"
COPYRIGHT="1998-2000 Thai Open Source Software Center Ltd and Clark Cooper
2001-2017 Expat maintainers."
LICENSE="MIT"
REVISION="1"
SOURCE_URI="http://downloads.sf.net/expat/expat-$portVersion.tar.bz2"
CHECKSUM_SHA256="d9dc32efba7e74f788fcc4f212a43216fc37cf5f23f4c2339664d473353aedf6"
ARCHITECTURES="!x86_gcc2 x86 x86_64 ?arm"
SECONDARY_ARCHITECTURES="x86"
PROVIDES="
expat$secondaryArchSuffix = $portVersion compat >= 2.2
lib:libexpat$secondaryArchSuffix = 1.6.7 compat >= 1
"
if [ -z "$secondaryArchSuffix" ]; then
PROVIDES="$PROVIDES
cmd:xmlwf = $portVersion compat >= 2.2
"
fi
REQUIRES="
haiku$secondaryArchSuffix
"
PROVIDES_devel="
expat${secondaryArchSuffix}_devel = $portVersion
devel:libexpat$secondaryArchSuffix = 1.6.7 compat >= 1
"
REQUIRES_devel="
expat$secondaryArchSuffix == $portVersion base
"
BUILD_REQUIRES="
haiku${secondaryArchSuffix}_devel
"
BUILD_PREREQUIRES="
cmd:aclocal
cmd:autoconf
cmd:automake
cmd:gcc$secondaryArchSuffix
cmd:ld$secondaryArchSuffix
cmd:libtoolize$secondaryArchSuffix
cmd:make
"
BUILD()
{
autoreconf -fi
runConfigure ./configure
make $jobArgs
}
INSTALL()
{
make install
rm $libDir/libexpat.la
# remove command and manual for secondary architecture
if [ -n "$secondaryArchSuffix" ]; then
rm -rf $binDir $documentationDir
fi
# prepare develop/lib
prepareInstalledDevelLib libexpat
fixPkgconfig
# devel package
packageEntries devel \
$developDir
}
TEST()
{
make check
}