27 lines
751 B
Bash
27 lines
751 B
Bash
# $Id$
|
|
# Maintainer: Patrick Hüther <patrick dot huether at gmail dot com>
|
|
pkgname=solaar
|
|
pkgver=0.8.8.1
|
|
pkgrel=1
|
|
pkgdesc="Linux devices manager for the Logitech Unifying Receiver"
|
|
arch=("any")
|
|
url="http://pwr.github.io/Solaar/"
|
|
license=('GPL')
|
|
depends=(
|
|
'systemd' 'python' 'python-pyudev'
|
|
)
|
|
optdepends=(
|
|
'gtk3: required for GUI application'
|
|
'gobject-introspection: required for GUI application'
|
|
'python-gobject: required for GUI application'
|
|
)
|
|
install=solaar.install
|
|
source=("https://github.com/pwr/Solaar/archive/$pkgver.tar.gz")
|
|
md5sums=('6b61313b0b113ffcd38b1d6ffbaf5ba3')
|
|
|
|
package() {
|
|
cd "$srcdir/Solaar-$pkgver"
|
|
python setup.py install --root="$pkgdir/" --optimize=1
|
|
}
|
|
#vim: set ft=PKGBUILD sw=2 ts=2 et
|