mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-03 09:07:15 +08:00
42 lines
807 B
Bash
42 lines
807 B
Bash
# Maintainer: Andrea Scarpino <andrea@archlinux.org>
|
|
|
|
source "../frameworks.conf"
|
|
|
|
pkgname=knotifyconfig
|
|
pkgver=${KFVersion}
|
|
pkgrel=1
|
|
pkgdesc='KNotifyConfig'
|
|
arch=('x86_64')
|
|
url='https://projects.kde.org/projects/frameworks/knotifyconfig'
|
|
license=('LGPL')
|
|
depends=('phonon-qt5' 'kio' 'kcompletion' 'kservice')
|
|
makedepends=('extra-cmake-modules')
|
|
checkdepends=('cmake')
|
|
groups=('kf5')
|
|
options=("debug")
|
|
source=("${KFServer}/${pkgver}/${pkgname}-${pkgver}.tar.xz")
|
|
sha256sums=( $(getSum ${pkgname}) )
|
|
|
|
prepare() {
|
|
mkdir -p build
|
|
}
|
|
|
|
build() {
|
|
cd build
|
|
cmake ../${pkgname}-${pkgver} \
|
|
-DCMAKE_BUILD_TYPE=${KFBuildType} \
|
|
-DCMAKE_INSTALL_PREFIX=${KFInstallPrefix} \
|
|
-DLIB_INSTALL_DIR=lib
|
|
make
|
|
}
|
|
|
|
check() {
|
|
cd build
|
|
make test
|
|
}
|
|
|
|
package() {
|
|
cd build
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|