mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-14 15:50:07 +02:00
jsoncpp: bump version.
SONAME bump
This commit is contained in:
75
dev-libs/jsoncpp/jsoncpp-1.9.1.recipe
Normal file
75
dev-libs/jsoncpp/jsoncpp-1.9.1.recipe
Normal file
@@ -0,0 +1,75 @@
|
||||
SUMMARY="A C++ library for interacting with JSON"
|
||||
DESCRIPTION="JsonCpp is a C++ library that allows manipulating JSON values, \
|
||||
including serialization and deserialization to and from strings. It can also \
|
||||
preserve existing comment in unserialization/serialization steps, making it a \
|
||||
convenient format to store user input files."
|
||||
HOMEPAGE="https://github.com/open-source-parsers/jsoncpp"
|
||||
COPYRIGHT="2007-2018 Baptiste Lepilleur and The JsonCpp Authors"
|
||||
LICENSE="MIT"
|
||||
REVISION="1"
|
||||
SOURCE_URI="https://github.com/open-source-parsers/jsoncpp/archive/$portVersion.tar.gz"
|
||||
CHECKSUM_SHA256="c7b40f5605dd972108f503f031b20186f5e5bca2b65cd4b8bd6c3e4ba8126697"
|
||||
SOURCE_FILENAME="jsoncpp-$portVersion.tar.gz"
|
||||
|
||||
ARCHITECTURES="!x86_gcc2 ?x86 x86_64"
|
||||
SECONDARY_ARCHITECTURES="x86"
|
||||
|
||||
libVersion="21"
|
||||
libVersionCompat="$libVersion compat >= ${libVersion%%.*}"
|
||||
|
||||
PROVIDES="
|
||||
jsoncpp$secondaryArchSuffix = $portVersion
|
||||
lib:libjsoncpp$secondaryArchSuffix = $libVersionCompat
|
||||
"
|
||||
REQUIRES="
|
||||
haiku$secondaryArchSuffix
|
||||
"
|
||||
|
||||
PROVIDES_devel="
|
||||
jsoncpp${secondaryArchSuffix}_devel = $portVersion
|
||||
devel:libjsoncpp$secondaryArchSuffix = $libVersionCompat
|
||||
"
|
||||
REQUIRES_devel="
|
||||
jsoncpp$secondaryArchSuffix == $portVersion base
|
||||
"
|
||||
|
||||
BUILD_REQUIRES="
|
||||
haiku${secondaryArchSuffix}_devel
|
||||
"
|
||||
BUILD_PREREQUIRES="
|
||||
cmd:gcc$secondaryArchSuffix
|
||||
cmd:ld$secondaryArchSuffix
|
||||
cmd:meson
|
||||
cmd:ninja
|
||||
cmd:pkg_config$secondaryArchSuffix
|
||||
cmd:python2
|
||||
"
|
||||
|
||||
BUILD()
|
||||
{
|
||||
for i in shared static; do
|
||||
meson --prefix="$prefix" --libdir="$libDir" --includedir="$includeDir" \
|
||||
--buildtype release \
|
||||
--default-library $i . build-$i
|
||||
ninja -C build-$i $jobArgs
|
||||
done
|
||||
}
|
||||
|
||||
INSTALL()
|
||||
{
|
||||
ninja -C build-shared install
|
||||
ninja -C build-static install
|
||||
|
||||
prepareInstalledDevelLib libjsoncpp
|
||||
fixPkgconfig
|
||||
|
||||
# devel package
|
||||
packageEntries devel \
|
||||
$developDir
|
||||
}
|
||||
|
||||
TEST()
|
||||
{
|
||||
LIBRARY_PATH="$sourceDir/build-shared${LIBRARY_PATH:+:$LIBRARY_PATH}" \
|
||||
ninja -C build-shared test
|
||||
}
|
||||
Reference in New Issue
Block a user