desktop/bluedevil/PKGBUILD
2015-01-07 05:47:04 +00:00

33 lines
849 B
Bash

# Desktop Packages for Chakra, part of chakraos.org
# Maintainer abveritas@chakra-project.org
# Maintainer Manuel Tortosa <manutortosa@chakra-project@org>
pkgname=bluedevil
pkgver=2.1
pkgrel=1
pkgdesc='KDE bluetooth framework'
arch=('x86_64')
url="https://projects.kde.org/projects/extragear/base/bluedevil"
license=('GPL')
depends=('kde-runtime' 'libbluedevil')
makedepends=('cmake' 'automoc4')
optdepends=('kde-workspace: to run the plasmoid')
install="${pkgname}.install"
source=("http://download.kde.org/stable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.xz")
md5sums=('7b154bdebd971df9e838f290b76a2cd0')
build(){
cd "${srcdir}"
mkdir build
cd build
cmake ../${pkgname}-${pkgver} \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr
make
}
package() {
cd "${srcdir}"/build
make DESTDIR="${pkgdir}" install
}