core/bluedevil/PKGBUILD

37 lines
870 B
Bash
Raw Normal View History

#Contributions from Arch: https://projects.archlinux.org/svntogit/packages.git/tree/trunk?h=packages/bluedevil-frameworks
2015-01-15 05:23:15 +08:00
source ../plasma.conf
2015-11-26 04:23:31 +08:00
pkgname=bluedevil
2015-01-15 05:23:15 +08:00
pkgver=${PVersion}
pkgrel=2
pkgdesc="Integrate the Bluetooth technology within KDE workspace and applications"
2015-01-15 05:23:15 +08:00
arch=('x86_64')
url='https://projects.kde.org/projects/kde/workspace/bluedevil'
2015-01-15 05:23:15 +08:00
license=('LGPL')
2018-03-10 04:58:01 +08:00
depends=(bluez-qt kio)
makedepends=(extra-cmake-modules plasma-framework kded python3)
2015-01-15 05:23:15 +08:00
groups=('plasma')
options=("debug")
2016-10-01 03:01:02 +08:00
source=("${PServer}/${pkgver}/${pkgname}-${PVersion}.tar.xz"{,.sig})
sha256sums=( $(getSum ${pkgname})
'SKIP' )
validpgpkeys=( ${Pvalidpgpkeys[@]} )
install=bluedevil.install
2015-01-15 05:23:15 +08:00
prepare() {
mkdir -p build
2015-11-26 04:23:31 +08:00
cd ${pkgname}-${pkgver}
2015-01-15 05:23:15 +08:00
}
build() {
cd build
cmake_kf5 ../${pkgname}-${pkgver}
make
2015-01-15 05:23:15 +08:00
}
package() {
cd build
make DESTDIR="${pkgdir}" install
}