Files
haikuports/x11-libs/libxpm/libxpm-3.5.12.recipe
2023-05-04 10:29:58 +02:00

105 lines
2.4 KiB
Bash

SUMMARY="X.Org Xpm library"
DESCRIPTION="The X.Org project provides an open source implementation of the \
X Window System. \
The development work is being done in conjunction with the freedesktop.org \
community. \
The X.Org Foundation is the educational non-profit corporation whose \
Board serves this effort, and whose Members lead this work."
HOMEPAGE="https://www.x.org/"
COPYRIGHT="1989-95 GROUPE BULL
1998 Arnaud LE HORS
1996 Lorens Younes"
# TODO: check all the licenses in the COPYING file in the next century.
LICENSE="MIT"
REVISION="5"
SOURCE_URI="https://www.x.org/releases/individual/lib/libXpm-$portVersion.tar.bz2"
CHECKSUM_SHA256="fd6a6de3da48de8d1bb738ab6be4ad67f7cb0986c39bd3f7d51dd24f7854bdec"
SOURCE_DIR="libXpm-$portVersion"
ARCHITECTURES="all !x86_gcc2"
SECONDARY_ARCHITECTURES="x86"
commandBinDir=$binDir
commandSuffix=$secondaryArchSuffix
if [ "$targetArchitecture" = x86_gcc2 ]; then
commandSuffix=
commandBinDir=$prefix/bin
fi
libVersion="4.11.0"
libVersionCompat="$libVersion compat >= ${libVersion%%.*}"
PROVIDES="
libxpm$secondaryArchSuffix = $portVersion
cmd:cxpm$commandSuffix
cmd:sxpm$commandSuffix
lib:libXpm$secondaryArchSuffix = $libVersionCompat
"
REQUIRES="
haiku$secondaryArchSuffix
lib:libintl$secondaryArchSuffix
lib:libX11$secondaryArchSuffix
lib:libXext$secondaryArchSuffix
lib:libXt$secondaryArchSuffix
"
PROVIDES_devel="
libxpm${secondaryArchSuffix}_devel = $portVersion
devel:libXpm$secondaryArchSuffix = $libVersionCompat
"
REQUIRES_devel="
libxpm$secondaryArchSuffix == $portVersion base
devel:libX11$secondaryArchSuffix
"
BUILD_REQUIRES="
haiku${secondaryArchSuffix}_devel
devel:libintl$secondaryArchSuffix
devel:libX11$secondaryArchSuffix
devel:libXext$secondaryArchSuffix
devel:libXt$secondaryArchSuffix
devel:util_macros
devel:xtrans
"
BUILD_PREREQUIRES="
cmd:awk
cmd:gcc$secondaryArchSuffix
cmd:libtoolize$secondaryArchSuffix
cmd:make
cmd:pkg_config$secondaryArchSuffix
"
defineDebugInfoPackage libxpm$secondaryArchSuffix \
$libDir/libXpm.so.$libVersion
BUILD()
{
runConfigure --omit-dirs binDir ./configure \
--bindir=$commandBinDir \
--disable-static
make $jobArgs
}
INSTALL()
{
make install
install -m 0755 -d "$docDir"
install -m 0644 -t "$docDir" README
# remove libtool library file
rm $libDir/libXpm.la
prepareInstalledDevelLib libXpm
fixPkgconfig
packageEntries devel \
$developDir
}
TEST()
{
make check
}