core/bluez-qt/PKGBUILD

36 lines
697 B
Bash
Raw Normal View History

2015-06-08 02:48:03 +08:00
source ../frameworks.conf
pkgname=bluez-qt
pkgver=${KFVersion}
2015-07-14 05:13:41 +08:00
pkgrel=1
2015-06-08 02:48:03 +08:00
pkgdesc='Qt wrapper for Bluez 5 DBus API'
arch=('x86_64')
url='https://projects.kde.org/projects/kde/workspace/bluez-qt'
license=(GPL2)
depends=('qt5-declarative' 'bluez')
makedepends=('extra-cmake-modules')
replaces=('libbluedevil-kf5')
conflicts=('libbluedevil-kf5')
provides=('libbluedevil-kf5')
groups=(kf5)
options=("debug")
2015-06-08 02:48:03 +08:00
source=("${KFServer}/${pkgname}-${pkgver}.tar.xz")
sha256sums=( $(getSum ${pkgname}) )
prepare() {
mkdir -p build
}
build() {
cd build
2015-06-10 04:31:35 +08:00
cmake_kf5 -DUDEV_RULES_INSTALL_DIR=/usr/lib/udev/rules.d ../${pkgname}-${pkgver}
2015-06-08 02:48:03 +08:00
make
}
package() {
cd build
make DESTDIR="$pkgdir" install
}