mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 10:32:13 +08:00
34 lines
678 B
Bash
34 lines
678 B
Bash
source ../plasma.conf
|
|
|
|
pkgname=bluez-qt
|
|
pkgver=${PVersion}
|
|
pkgrel=1
|
|
pkgdesc='The new bluedevil library'
|
|
url="https://projects.kde.org/"
|
|
arch=('x86_64')
|
|
url='https://projects.kde.org/projects/kde/workspace/khotkeys'
|
|
license=('LGPL')
|
|
depends=('qt5-base' 'qt5-declarative')
|
|
makedepends=('extra-cmake-modules' 'kdoctools')
|
|
replaces=('libbluedevil-kf5')
|
|
conflicts=('libbluedevil-kf5')
|
|
groups=('plasma')
|
|
options=("debug")
|
|
source=("${PServer}/${pkgver}/${pkgname}-${PSubVersion}.tar.xz")
|
|
sha256sums=( $(getSum ${pkgname}) )
|
|
|
|
prepare() {
|
|
mkdir -p build
|
|
}
|
|
|
|
build() {
|
|
cd build
|
|
cmake_kf5 ../${pkgname}-${pkgver}
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd build
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|