libktorrent, cleanup (#8308)

This commit is contained in:
Schrijvers Luc
2023-04-07 17:20:53 +02:00
committed by GitHub
parent 34b14a08b3
commit adffb00c56

View File

@@ -8,7 +8,7 @@ blocking lists."
HOMEPAGE="https://github.com/KDE/libktorrent/"
COPYRIGHT="2010-2019 KDE Organisation"
LICENSE="GNU LGPL v2"
REVISION="2"
REVISION="3"
SOURCE_URI="https://github.com/KDE/libktorrent/archive/v$portVersion.tar.gz"
CHECKSUM_SHA256="897d970d8e06c82dfb43757b23e3079731dbb74bca259c559e25b7d574dfece4"
@@ -35,6 +35,7 @@ REQUIRES="
lib:libKF5Service$secondaryArchSuffix
lib:libKF5Solid$secondaryArchSuffix
lib:libKF5WidgetsAddons$secondaryArchSuffix
lib:libKF5WindowSystem$secondaryArchSuffix
lib:libqca_qt5$secondaryArchSuffix
lib:libQt5Core$secondaryArchSuffix
lib:libQt5Gui$secondaryArchSuffix
@@ -73,6 +74,7 @@ BUILD_REQUIRES="
devel:libKF5Service$secondaryArchSuffix
devel:libKF5Solid$secondaryArchSuffix
devel:libKF5WidgetsAddons$secondaryArchSuffix
devel:libKF5WindowSystem$secondaryArchSuffix
devel:libKF5XmlGui$secondaryArchSuffix
devel:libqca$secondaryArchSuffix >= 2
devel:libQt5Core$secondaryArchSuffix >= 5.14
@@ -81,27 +83,24 @@ BUILD_PREREQUIRES="
cmd:cmake
cmd:g++$secondaryArchSuffix
cmd:make
cmd:python2
cmd:python3
cmd:qdbuscpp2xml$secondaryArchSuffix
"
BUILD()
{
mkdir -p build
cd build
cmake .. $cmakeDirArgs \
cmake -Bbuild -S. -DCMAKE_BUILD_TYPE=Release \
$cmakeDirArgs \
-DECM_DIR=/system/data/cmake/Modules/ECM/cmake \
-DECM_MKSPECS_INSTALL_DIR=$dataDir/Qt5/mkspecs
make $jobArgs
make -C build $jobArgs
}
INSTALL()
{
cd build
make install
make -C build install
prepareInstalledDevelLibs \
prepareInstalledDevelLib \
libKF5Torrent
packageEntries devel \
@@ -112,6 +111,5 @@ INSTALL()
TEST()
{
cd build
make test
make -C build test
}