libquotient, new recipe (#5917)

Authored-by: Pascal Abresch (nephele)
This commit is contained in:
Schrijvers Luc
2021-05-15 18:54:18 +02:00
committed by GitHub
parent 97c510b9bd
commit fcf7ff4890

View File

@@ -0,0 +1,74 @@
SUMMARY="Short description of ProjectX"
DESCRIPTION="The Quotient project aims to produce a Qt5-based SDK to develop \
applications for Matrix.
libQuotient is a library that enables client applications.
It is the backbone of Quaternion, NeoChat and other projects.
Versions 0.5.x and older use the previous name - libQMatrixClient."
HOMEPAGE="https://github.com/quotient-im/libQuotient"
COPYRIGHT="Quotient contributors"
LICENSE="GNU LGPL v2.1"
REVISION="1"
SOURCE_URI="https://github.com/quotient-im/libQuotient/archive/refs/tags/$portVersion.tar.gz"
CHECKSUM_SHA256="33d3da5a7045bbe2611dd73104279986dd8356b24de339dd10874c1a9417bba7"
SOURCE_DIR="libQuotient-$portVersion"
ARCHITECTURES="!x86_gcc2 x86_64"
SECONDARY_ARCHITECTURES="x86"
libVersion="$portVersion"
libVersionCompat="$libVersion compat >= ${libVersion%.*}"
PROVIDES="
libquotient$secondaryArchSuffix = $portVersion
lib:libQuotient$secondaryArchSuffix = $libVersionCompat
"
REQUIRES="
haiku$secondaryArchSuffix
lib:libQt5Core$secondaryArchSuffix
lib:libQt5Gui$secondaryArchSuffix
lib:libQt5Multimedia$secondaryArchSuffix
lib:libQt5Network$secondaryArchSuffix
"
PROVIDES_devel="
libquotient${secondaryArchSuffix}_devel = $portVersion
devel:libQuotient$secondaryArchSuffix = $libVersionCompat
"
REQUIRES_devel="
libquotient$secondaryArchSuffix == $portVersion base
"
BUILD_REQUIRES="
haiku${secondaryArchSuffix}_devel
devel:libQt5Core$secondaryArchSuffix
"
BUILD_PREREQUIRES="
cmd:cmake
cmd:gcc$secondaryArchSuffix
cmd:make
"
BUILD()
{
cmake $cmakeDirArgs \
-DCMAKE_BUILD_TYPE=Release \
-DBUILD_SHARED_LIBS=ON \
-DQuotient_INSTALL_TESTS=OFF -L
cmake --build . --target all
}
INSTALL()
{
cmake --install .
# get rid of share dir with Android.mk
rm -rf $prefix/share
prepareInstalledDevelLib \
libQuotient
fixPkgconfig
packageEntries devel \
$developDir \
$libDir/cmake
}