Files
haikuports/dev-libs/libsigc++/libsigc++-2.4.1.recipe

67 lines
1.6 KiB
Bash

SUMMARY="Callback Framework for C++"
DESCRIPTION="A typesafe callback system for standard C++. It allows you to \
define signals and to connect those signals to any callback function, either \
global or a member function, regardless of whether it is static or virtual.
It also contains adaptor classes for connection of dissimilar callbacks and \
has an ease of use unmatched by other C++ callback libraries."
HOMEPAGE="http://libsigc.sourceforge.net/stable.shtml"
SOURCE_URI="http://ftp.gnome.org/pub/GNOME/sources/libsigc++/2.4/libsigc++-$portVersion.tar.xz"
CHECKSUM_SHA256="540443492a68e77e30db8d425f3c0b1299c825bf974d9bfc31ae7efafedc19ec"
REVISION="2"
ARCHITECTURES="!x86_gcc2"
SECONDARY_ARCHITECTURES="x86"
PROVIDES="
libsigc++$secondaryArchSuffix = $portVersion
lib:libsigc_2.0$secondaryArchSuffix = 0.0.0 compat = 0
"
REQUIRES="
haiku$secondaryArchSuffix
"
PROVIDES_devel="
libsigc++${secondaryArchSuffix}_devel = $portVersion
devel:libsigc_2.0$secondaryArchSuffix = 0.0.0 compat = 0
"
REQUIRES_devel="
libsigc++$secondaryArchSuffix == $portVersion base
"
BUILD_REQUIRES="
haiku${secondaryArchSuffix}_devel
"
BUILD_PREREQUIRES="
cmd:autoconf
cmd:gcc$secondaryArchSuffix
cmd:libtoolize$secondaryArchSuffix
cmd:make
"
BUILD()
{
# libtoolize --force --copy --install
# aclocal
# sh autogen.sh
runConfigure ./configure
make $jobArgs
}
INSTALL()
{
make install
prepareInstalledDevelLib libsigc-2.0
rm $developLibDir/*.la
fixPkgconfig
packageEntries devel $relativeDevelopDir
}
LICENSE="GNU LGPL v2.1"
COPYRIGHT="2002-2015 The libsigc++ Development Team"