mirror of
https://github.com/yann64/haikuports.git
synced 2026-03-19 01:46:00 +01:00
78 lines
2.1 KiB
Bash
78 lines
2.1 KiB
Bash
SUMMARY="An efficient method of encoding structured data"
|
||
DESCRIPTION="Protocol buffers are Google's language-neutral, platform-neutral, \
|
||
extensible mechanism for serializing structured data – think XML, but smaller, \
|
||
faster, and simpler. You define how you want your data to be structured once, \
|
||
then you can use special generated source code to easily write and read your \
|
||
structured data to and from a variety of data streams and using a variety of \
|
||
languages – Java, C++, or Python."
|
||
HOMEPAGE="https://github.com/google/protobuf"
|
||
COPYRIGHT="2008 Google"
|
||
LICENSE="Apache v2"
|
||
REVISION="7"
|
||
SOURCE_URI="$HOMEPAGE/releases/download/v$portVersion/protobuf-$portVersion.tar.bz2"
|
||
CHECKSUM_SHA256="cf8452347330834bbf9c65c2e68b5562ba10c95fa40d4f7ec0d2cb332674b0bf"
|
||
PATCHES="protobuf-$portVersion.patchset"
|
||
|
||
ARCHITECTURES="!x86_gcc2 x86 x86_64"
|
||
SECONDARY_ARCHITECTURES="x86"
|
||
|
||
PROVIDES="
|
||
protobuf$secondaryArchSuffix =$portVersion
|
||
cmd:protoc$secondaryArchSuffix
|
||
lib:libprotobuf_lite$secondaryArchSuffix = 7.0.0 compat >= 7
|
||
lib:libprotobuf$secondaryArchSuffix = 7.0.0 compat >= 7
|
||
lib:libprotoc$secondaryArchSuffix = 7.0.0 compat >= 7
|
||
"
|
||
REQUIRES="
|
||
haiku$secondaryArchSuffix
|
||
"
|
||
|
||
PROVIDES_devel="
|
||
protobuf${secondaryArchSuffix}_devel = $portVersion
|
||
devel:libprotobuf_lite$secondaryArchSuffix = 7.0.0 compat >= 7
|
||
devel:libprotobuf$secondaryArchSuffix = 7.0.0 compat >= 7
|
||
devel:libprotoc$secondaryArchSuffix = 7.0.0 compat >= 7
|
||
"
|
||
REQUIRES_devel="
|
||
protobuf$secondaryArchSuffix == $portVersion base
|
||
"
|
||
|
||
BUILD_REQUIRES="
|
||
haiku${secondaryArchSuffix}_devel
|
||
"
|
||
BUILD_PREREQUIRES="
|
||
cmd:autoreconf
|
||
cmd:gcc$secondaryArchSuffix
|
||
cmd:libtoolize$secondaryArchSuffix
|
||
cmd:make
|
||
"
|
||
|
||
defineDebugInfoPackage protobuf$secondaryArchSuffix \
|
||
$libDir/libprotobuf.so.7.0.0 \
|
||
$libDir/libprotoc.so.7.0.0 \
|
||
$libDir/libprotobuf-lite.so.7.0.0
|
||
|
||
BUILD()
|
||
{
|
||
libtoolize --force --copy --install
|
||
./autogen.sh
|
||
runConfigure ./configure
|
||
make $jobArgs
|
||
}
|
||
|
||
INSTALL()
|
||
{
|
||
make install
|
||
|
||
rm $libDir/lib*.la
|
||
|
||
prepareInstalledDevelLibs libprotobuf_lite libprotobuf libprotoc
|
||
fixPkgconfig
|
||
packageEntries devel $developDir
|
||
}
|
||
|
||
TEST()
|
||
{
|
||
make check
|
||
}
|