blob: 3fdf6ee00828285201f812ab9ff6160a8653ea06 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
# Maintainer: Muflone http://www.muflone.com/contacts/english/
pkgname=bluewho-git
pkgver=0.5.2
pkgrel=1
pkgdesc="Information and notification of new discovered bluetooth devices"
url="http://www.muflone.com/bluewho"
arch=('any')
license=('GPL3')
makedepends=('git' 'python-setuptools')
depends=('gtk3' 'gobject-introspection' 'libnotify'
'python-dbus' 'python-xdg' 'python-gobject' 'python-bluezero')
optdepends=('libcanberra: to play notification sound using canberra-gtk-play'
'alsa-utils: to play notification sound using aplay'
'libpulse: to play notification sound using paplay'
'mplayer: to play notification sound using mplayer')
provides=('bluewho')
conflicts=('bluewho')
source=("git+https://github.com/muflone/bluewho.git")
sha256sums=('SKIP')
pkgver() {
cd "${pkgname%-*}"
git describe --always | sed 's|-|.|g'
}
build() {
cd "${pkgname%-*}"
python setup.py build
}
package() {
cd "${pkgname%-*}"
python setup.py install --optimize=1 --root "${pkgdir}"
}
|