diff options
Diffstat (limited to 'extra/bluedevil/PKGBUILD')
-rw-r--r-- | extra/bluedevil/PKGBUILD | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/extra/bluedevil/PKGBUILD b/extra/bluedevil/PKGBUILD index 247a42728..3a7acc9cc 100644 --- a/extra/bluedevil/PKGBUILD +++ b/extra/bluedevil/PKGBUILD @@ -1,23 +1,28 @@ -# $Id: PKGBUILD 194547 2013-09-18 11:33:01Z tomegun $ +# $Id: PKGBUILD 202646 2013-12-23 08:16:52Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=bluedevil -pkgver=1.3.2 +pkgver=2.0rc1 +_pkgver=2.0-rc1 pkgrel=1 +epoch=1 pkgdesc='KDE bluetooth framework' arch=('i686' 'x86_64') url="https://projects.kde.org/projects/extragear/base/bluedevil" license=('GPL') -depends=('kdebase-workspace' 'libbluedevil' 'obex-data-server' 'obexd-client') +depends=('kdebase-workspace' 'libbluedevil') makedepends=('cmake' 'automoc4') install="${pkgname}.install" -source=("http://download.kde.org/stable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.xz") -md5sums=('a43e644fe75bd090c47c060dcbdfdb27') +source=("http://download.kde.org/unstable/${pkgname}/${pkgname}-${_pkgver}.tar.xz") +md5sums=('d49a3037d29cf4ba9e0a0968a0139333') -build(){ +prepare() { mkdir build +} + +build(){ cd build - cmake ../${pkgname}-v${pkgver} \ + cmake ../${pkgname}-${_pkgver} \ -DCMAKE_BUILD_TYPE=Release \ -DCMAKE_INSTALL_PREFIX=/usr make |