diff options
author | root <root@rshg054.dnsready.net> | 2011-10-11 23:14:37 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2011-10-11 23:14:37 +0000 |
commit | f482dc1bd42773a12552e5a60df119410a0d8bd8 (patch) | |
tree | 7ef11817f41aecf969aeeb03f0dbb3cc28e2d8b4 /extra/libbluedevil | |
parent | cbcf42aba84733e1b9072f5320519c99bf8c0ac7 (diff) |
Tue Oct 11 23:14:37 UTC 2011
Diffstat (limited to 'extra/libbluedevil')
-rw-r--r-- | extra/libbluedevil/PKGBUILD | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/extra/libbluedevil/PKGBUILD b/extra/libbluedevil/PKGBUILD index fef58105f..760cd2510 100644 --- a/extra/libbluedevil/PKGBUILD +++ b/extra/libbluedevil/PKGBUILD @@ -1,8 +1,9 @@ -# $Id: PKGBUILD 119928 2011-04-17 01:27:41Z andrea $ -# Maintainer: Andrea Scarpino <andrea@archlinux.org> +# $Id: PKGBUILD 140236 2011-10-10 10:55:52Z andrea $ +# Maintainer: +# Contributor: Andrea Scarpino <andrea@archlinux.org> pkgname=libbluedevil -pkgver=1.9 +pkgver=1.9.1 pkgrel=1 pkgdesc='A Qt wrapper for bluez used in the new KDE bluetooth stack' arch=('i686' 'x86_64') @@ -10,11 +11,11 @@ url="https://projects.kde.org/projects/playground/libs/libbluedevil" license=('GPL') depends=('qt' 'bluez') makedepends=('cmake') -source=("http://download.kde.org/unstable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2") -md5sums=('5f22614dfb840734da6e8b8710c2472e') +source=("http://download.kde.org/stable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2") +md5sums=('b3f04954f75f78c874cdb462c2454afc') build(){ - cd ${srcdir} + cd "${srcdir}" mkdir build cd build cmake ../${pkgname}-${pkgver} \ @@ -24,6 +25,6 @@ build(){ } package() { - cd ${srcdir}/build - make DESTDIR=${pkgdir} install + cd "${srcdir}"/build + make DESTDIR="${pkgdir}" install } |