Files
ports/archived/frameworkintegration/spkgbuild
2021-01-03 07:58:45 +08:00

25 lines
600 B
Plaintext
Executable File

# description : Framework providing components to allow applications to integrate with a KDE Workspace
# depends : kpackage knewstuff extra-cmake-modules python3 qt5
name=frameworkintegration
version=5.68.0
release=1
source="https://download.kde.org/stable/frameworks/${version%.*}/$name-$version.tar.xz"
build() {
cd $name-$version
mkdir build
cd build
cmake -DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_PREFIX_PATH=/usr \
-DCMAKE_INSTALL_LIBEXECDIR=lib \
-DCMAKE_BUILD_TYPE=Release \
-DBUILD_TESTING=OFF \
-Wno-dev ..
make
make DESTDIR=$PKG install
}