mirror of
https://github.com/binary-kitchen/doorlockd
synced 2024-10-31 22:47:05 +01:00
23 lines
567 B
Bash
23 lines
567 B
Bash
|
# 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)
|
||
|
depends=('python3' 'alsa-utils' 'mosquitto' 'wol' 'python-flask-wtf' 'python-flask-socketio')
|
||
|
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
|
||
|
}
|