Files
haikuports/dev-libs/libsigc++/libsigc++3-2.99.8.recipe
2017-03-11 20:38:03 +03:00

75 lines
1.7 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/"
COPYRIGHT="2002-2017 The libsigc++ Development Team"
LICENSE="GNU LGPL v3"
REVISION="2"
SOURCE_URI="http://ftp.gnome.org/pub/GNOME/sources/libsigc++/2.99/libsigc++-$portVersion.tar.xz"
CHECKSUM_SHA256="1d053813a455bd9157b01312d015f74fa39f33466961a66e844daeaee658f0f1"
SOURCE_DIR="libsigc++-$portVersion"
ARCHITECTURES="!x86_gcc2 x86 ?x86_64"
SECONDARY_ARCHITECTURES="x86"
PROVIDES="
libsigc++$secondaryArchSuffix = $portVersion
lib:libsigc_3.0$secondaryArchSuffix = 0.0.0 compat = 0
"
REQUIRES="
haiku$secondaryArchSuffix
"
PROVIDES_devel="
libsigc++${secondaryArchSuffix}_devel = $portVersion
devel:libsigc_3.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:grep
cmd:libtoolize$secondaryArchSuffix
cmd:make
cmd:perl
cmd:pkg_config$secondaryArchSuffix
cmd:xsltproc$secondaryArchSuffix
"
BUILD()
{
runConfigure ./configure
make $jobArgs
}
INSTALL()
{
make install
mv $libDir/sigc++-3.0/include/sigc++config.h $includeDir/sigc++-3.0
rm -rf $libDir/sigc++-3.0
prepareInstalledDevelLib \
libsigc-3.0
rm $developLibDir/*.la
fixPkgconfig
packageEntries devel \
$relativeDevelopDir
}