blob: 57427262d14726b68ad2da5f6d1f465077c50698 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Maintainer: Johan Förberg <johan@forberg.se>
pkgname=dmenu-bluetooth
pkgver=r48.96e2e3e
pkgrel=1
pkgdesc='A dmenu menu that uses bluetoothctl to connect to bluetooth devices and display status'
arch=(any)
url='https://github.com/Layerex/dmenu-bluetooth'
license=(GPL3)
depends=(bluez-utils)
makedepends=(git)
source=(dmenu-bluetooth::git+"https://github.com/Layerex/dmenu-bluetooth.git")
md5sums=(SKIP)
pkgver() {
cd "$pkgname"
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
package() {
cd "$pkgname"
install -m755 -t "$pkgdir"/usr/bin/ -D dmenu-bluetooth
}
|