diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /extra/bluedevil/PKGBUILD |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'extra/bluedevil/PKGBUILD')
-rw-r--r-- | extra/bluedevil/PKGBUILD | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/extra/bluedevil/PKGBUILD b/extra/bluedevil/PKGBUILD new file mode 100644 index 000000000..eb2a7f48e --- /dev/null +++ b/extra/bluedevil/PKGBUILD @@ -0,0 +1,30 @@ +# $Id: PKGBUILD 116735 2011-03-25 15:41:57Z andrea $ +# Maintainer: Andrea Scarpino <andrea@archlinux.org> + +pkgname=bluedevil +pkgver=1.0.3 +pkgrel=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') +makedepends=('cmake' 'automoc4') +install="${pkgname}.install" +source=("http://download.kde.org/stable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2") +md5sums=('a2d4aa126f86dbc1f429a3aa9e95671d') + +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 +} |