diff options
author | root <root@rshg054.dnsready.net> | 2012-01-11 23:14:45 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2012-01-11 23:14:45 +0000 |
commit | 3a0439ec6aea4411ac6d11c90cd8220f8f12a660 (patch) | |
tree | adc6bcfb43847a9615413defa99b7a0946d22565 /extra/bluez/PKGBUILD | |
parent | b8012183bbaae70ce4a714c618a967e85df9f521 (diff) |
Wed Jan 11 23:14:45 UTC 2012
Diffstat (limited to 'extra/bluez/PKGBUILD')
-rw-r--r-- | extra/bluez/PKGBUILD | 26 |
1 files changed, 16 insertions, 10 deletions
diff --git a/extra/bluez/PKGBUILD b/extra/bluez/PKGBUILD index 920c6437a..3d3f31c46 100644 --- a/extra/bluez/PKGBUILD +++ b/extra/bluez/PKGBUILD @@ -1,10 +1,11 @@ -# $Id: PKGBUILD 145250 2011-12-20 08:51:40Z andrea $ -# Maintainer: Andrea Scarpino <andrea@archlinux.org> +# $Id: PKGBUILD 146412 2012-01-10 21:47:26Z andrea $ +# Maintainer: +# Contributor: Andrea Scarpino <andrea@archlinux.org> # Contributor: Geoffroy Carrier <geoffroy@archlinux.org> pkgname=bluez -pkgver=4.96 -pkgrel=3 +pkgver=4.97 +pkgrel=1 pkgdesc="Libraries and tools for the Bluetooth protocol stack" url="http://www.bluez.org/" arch=('i686' 'x86_64') @@ -24,17 +25,21 @@ replaces=('bluez-libs' 'bluez-utils') options=('!libtool' 'emptydirs') backup=(etc/bluetooth/{main,rfcomm,audio,network,input,serial}.conf 'etc/conf.d/bluetooth' 'etc/dbus-1/system.d/bluetooth.conf') -#source=("http://www.kernel.org/pub/linux/bluetooth/${pkgname}-${pkgver}.tar.bz2" -source=("ftp://ftp.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}.tar.bz2" +source=("http://www.kernel.org/pub/linux/bluetooth/${pkgname}-${pkgver}.tar.bz2" 'bluetooth.conf.d' - 'rc.bluetooth') -md5sums=('255c3dda8b93210ab0dcf8d04ddaf69f' + 'rc.bluetooth' + 'make-libcheck-optional.patch') +md5sums=('b302cee7f9b9527d29775449d7e1dfe6' '7412982b440f29fa7f76a41a87fef985' - '8f9498707f809506928b2e480d3b6789') + '8f9498707f809506928b2e480d3b6789' + 'f112fc5bcaeecc7b6ea994f14786e235') build() { cd "${srcdir}/${pkgname}-${pkgver}" + patch -p1 -i "${srcdir}"/make-libcheck-optional.patch + autoreconf -i -f + ./configure --prefix=/usr \ --sysconfdir=/etc \ --localstatedir=/var \ @@ -50,7 +55,8 @@ build() { --enable-pand \ --enable-dund \ --enable-cups \ - --enable-wiimote + --enable-wiimote \ + --disable-test make } |