2018-09-05 22:23:05 +02:00
|
|
|
# Author: Ralf Ramsauer <ralf@binary-kitchen.de>
|
|
|
|
|
|
|
|
pkgname=doorlockd
|
|
|
|
pkgver=2.0
|
|
|
|
pkgrel=1
|
|
|
|
pkgdesc="Binary Kitchen's doorlockd"
|
|
|
|
arch=('any')
|
|
|
|
url="https://github.com/Binary-Kitchen/${pkgname}"
|
|
|
|
license=(GPL)
|
2018-09-09 23:42:33 +02:00
|
|
|
depends=('python3' 'python-ldap' 'alsa-utils' 'mosquitto' 'wol' 'python-flask-wtf' 'python-flask-socketio')
|
2018-09-05 22:23:05 +02:00
|
|
|
source=("git+https://github.com/Binary-Kitchen/${pkgname}.git#branch=next")
|
|
|
|
sha256sums=('SKIP')
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd "$srcdir/$pkgname/"
|
|
|
|
make PREFIX=/usr sysconfdir=/etc
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
cd "$srcdir/$pkgname/"
|
|
|
|
make PREFIX=/usr sysconfdir=/etc DESTDIR="$pkgdir" install
|
|
|
|
}
|