core/bluedevil/PKGBUILD

39 lines
1.0 KiB
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}
2016-02-14 19:56:22 +08:00
pkgrel=1
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')
2015-05-27 06:10:00 +08:00
depends=('bluez-qt' 'bluez' 'kcoreaddons' 'kwidgetsaddons' 'kdbusaddons' 'ki18n' 'kinit' 'kio'
2016-01-18 10:51:11 +08:00
'kiconthemes' 'knotifications' 'plasma-framework' 'kded')
2015-05-27 06:10:00 +08:00
makedepends=('extra-cmake-modules' 'kdoctools')
2015-01-15 05:23:15 +08:00
groups=('plasma')
options=("debug")
2015-11-26 04:23:31 +08:00
replaces=('bluedevil<5.4' 'bluedevil-kf5')
provides=('bluedevil-kf5')
conflicts=('bluedevil<5.4' 'bluedevil-kf5')
source=("${PServer}/${pkgver}/${pkgname}-${PSubVersion}.tar.xz")
sha256sums=( $(getSum ${pkgname}) )
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
}