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/libbluedevil/PKGBUILD |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'extra/libbluedevil/PKGBUILD')
-rw-r--r-- | extra/libbluedevil/PKGBUILD | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/extra/libbluedevil/PKGBUILD b/extra/libbluedevil/PKGBUILD new file mode 100644 index 000000000..fd648a9ae --- /dev/null +++ b/extra/libbluedevil/PKGBUILD @@ -0,0 +1,29 @@ +# $Id: PKGBUILD 116725 2011-03-25 15:32:20Z andrea $ +# Maintainer: Andrea Scarpino <andrea@archlinux.org> + +pkgname=libbluedevil +pkgver=1.8.1 +pkgrel=1 +pkgdesc='A Qt wrapper for bluez used in the new KDE bluetooth stack' +arch=('i686' 'x86_64') +url="https://projects.kde.org/projects/playground/libs/libbluedevil" +license=('GPL') +depends=('qt' 'bluez') +makedepends=('cmake') +source=("ftp://ftp.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}.tar.gz") +md5sums=('4534b5d254b15e3884c4e51dfdf586b7') + +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 +} |