summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorSergej Pupykin2023-03-24 16:11:03 +0300
committerSergej Pupykin2023-03-24 16:11:03 +0300
commitec01ac1b96e3b50bd2098bc52726a28a991974c3 (patch)
treef548c93cd6f7653b33ff6905e9145a9b177ef0e4
parent1f6ef354aa4a299916ee595df658e5752f22d077 (diff)
downloadaur-ec01ac1b96e3b50bd2098bc52726a28a991974c3.tar.gz
upd
-rw-r--r--.SRCINFO8
-rw-r--r--PKGBUILD12
2 files changed, 12 insertions, 8 deletions
diff --git a/.SRCINFO b/.SRCINFO
index d1c3b9226a64..af37231ff0ed 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,12 +1,12 @@
pkgbase = bluez-hciconfig
pkgdesc = deprecated hciconfig tool from bluez
- pkgver = 5.63
+ pkgver = 5.66
pkgrel = 1
url = http://www.bluez.org/
arch = x86_64
license = GPL2
- depends = bluez
- source = https://www.kernel.org/pub/linux/bluetooth/bluez-5.63.tar.xz
- sha256sums = 9349e11e8160bb3d720835d271250d8a7424d3690f5289e6db6fe07cc66c6d76
+ depends = bluez-libs
+ source = https://www.kernel.org/pub/linux/bluetooth/bluez-5.66.tar.xz
+ sha256sums = 39fea64b590c9492984a0c27a89fc203e1cdc74866086efb8f4698677ab2b574
pkgname = bluez-hciconfig
diff --git a/PKGBUILD b/PKGBUILD
index b496674658c6..fb0e71dd0246 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,19 +2,23 @@
# Maintainer: Sergej Pupykin <arch+pub@sergej.pp.ru>
pkgname=bluez-hciconfig
-pkgver=5.63
+pkgver=5.66
pkgrel=1
pkgdesc="deprecated hciconfig tool from bluez"
url="http://www.bluez.org/"
arch=('x86_64')
license=('GPL2')
-depends=("bluez")
+depends=("bluez-libs")
source=(https://www.kernel.org/pub/linux/bluetooth/bluez-${pkgver}.tar.xz)
-sha256sums=('9349e11e8160bb3d720835d271250d8a7424d3690f5289e6db6fe07cc66c6d76')
+sha256sums=('39fea64b590c9492984a0c27a89fc203e1cdc74866086efb8f4698677ab2b574')
build() {
cd bluez-${pkgver}/tools
- gcc hciconfig.c parser/{csr,parser,lmp}.c ../src/textfile.c -lbluetooth -o hciconfig -DVERSION=\"$pkgver\" -I..
+ gcc hciconfig.c parser/{csr,parser,lmp}.c ../src/textfile.c \
+ -lbluetooth -o hciconfig \
+ -DVERSION=\"$pkgver\" \
+ -DSTORAGEDIR=\"/var/lib/bluetooth\" \
+ -I..
}
package() {