mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-11 20:54:42 +08:00
36 lines
928 B
Bash
36 lines
928 B
Bash
#Contributions from Arch: https://projects.archlinux.org/svntogit/packages.git/tree/trunk?h=packages/bluedevil-frameworks
|
|
source ../plasma.conf
|
|
|
|
pkgname=bluedevil
|
|
pkgver=${PVersion}
|
|
pkgrel=1
|
|
pkgdesc="Integrate the Bluetooth technology within KDE workspace and applications"
|
|
arch=('x86_64')
|
|
url='https://projects.kde.org/projects/kde/workspace/bluedevil'
|
|
license=('LGPL')
|
|
depends=('bluez-qt' 'bluez' 'kcoreaddons' 'kwidgetsaddons' 'kdbusaddons' 'ki18n' 'kinit' 'kio'
|
|
'kiconthemes' 'knotifications' 'plasma-framework' 'kded')
|
|
makedepends=('extra-cmake-modules' 'kdoctools')
|
|
groups=('plasma')
|
|
options=("debug")
|
|
source=("${PServer}/${pkgver}/${pkgname}-${PVersion}.tar.xz")
|
|
sha256sums=( $(getSum ${pkgname}) )
|
|
install=bluedevil.install
|
|
|
|
prepare() {
|
|
mkdir -p build
|
|
|
|
cd ${pkgname}-${pkgver}
|
|
}
|
|
|
|
build() {
|
|
cd build
|
|
cmake_kf5 ../${pkgname}-${pkgver}
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd build
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|