2013-12-18 02:36:04 +08:00
|
|
|
|
2011-04-17 02:06:14 +08:00
|
|
|
# Chakra Packages for Chakra, part of chakra-project.org
|
2013-12-18 02:36:04 +08:00
|
|
|
|
2013-12-18 02:41:12 +08:00
|
|
|
# Maintainer : abveritas@chakra-project.org
|
|
|
|
# Maintainer : Manuel Tortosa <manutortosa@chakra-project@org>
|
2011-04-17 02:06:14 +08:00
|
|
|
|
|
|
|
pkgname=libbluedevil
|
2015-01-07 13:33:59 +08:00
|
|
|
pkgver=2.1
|
2011-10-10 12:03:39 +08:00
|
|
|
pkgrel=1
|
2011-04-17 02:06:14 +08:00
|
|
|
pkgdesc='A Qt wrapper for bluez used in the new KDE bluetooth stack'
|
2015-01-07 13:33:59 +08:00
|
|
|
arch=('x86_64')
|
2011-04-17 02:06:14 +08:00
|
|
|
url="https://projects.kde.org/projects/playground/libs/libbluedevil"
|
|
|
|
license=('GPL')
|
|
|
|
depends=('qt' 'bluez')
|
|
|
|
makedepends=('cmake')
|
2015-01-07 13:33:59 +08:00
|
|
|
source=("http://download.kde.org/stable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.xz")
|
|
|
|
md5sums=('0ffc977d171d786ae34bc4e461fe682b')
|
2011-04-17 02:06:14 +08:00
|
|
|
|
|
|
|
build(){
|
|
|
|
cd ${srcdir}
|
|
|
|
mkdir build
|
|
|
|
cd build
|
2011-04-18 01:44:53 +08:00
|
|
|
cmake ../${pkgname}-${pkgver} \
|
2011-04-17 02:06:14 +08:00
|
|
|
-DCMAKE_BUILD_TYPE=Release \
|
2015-01-07 13:33:59 +08:00
|
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
|
|
-DCMAKE_INSTALL_LIBDIR=lib
|
2011-04-17 02:06:14 +08:00
|
|
|
make
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
cd ${srcdir}/build
|
|
|
|
make DESTDIR=${pkgdir} install
|
|
|
|
}
|