1
0
mirror of https://github.com/binary-kitchen/doorlockd synced 2024-11-14 19:25:26 +01:00
doorlockd-mirror/arch/PKGBUILD
Ralf Ramsauer c8503f46e8 VERSION: open 2.1 development cycle
Better late than never: open the 2.1 development cycle

Signed-off-by: Ralf Ramsauer <ralf@binary-kitchen.de>
2019-06-23 23:41:29 +02:00

39 lines
752 B
Bash

# Author: Ralf Ramsauer <ralf@binary-kitchen.de>
pkgname=doorlockd
pkgver=2.1
pkgrel=1
pkgdesc="Binary Kitchen's doorlockd"
arch=('any')
url="https://github.com/Binary-Kitchen/${pkgname}"
license=(GPL)
depends=('python3'
'python-pyserial'
'python-ldap'
'python-pip'
'alsa-utils'
'libgpiod'
'mosquitto'
'mpg123'
'python-flask-wtf'
'python-flask-socketio'
'python-paho-mqtt'
'chromium'
'xf86-video-fbdev'
'fluxbox'
'nginx'
'slim')
source=("git+https://github.com/Binary-Kitchen/${pkgname}.git#branch=next")
sha256sums=('SKIP')
build() {
cd "$srcdir/$pkgname/"
make
}
package() {
cd "$srcdir/$pkgname/"
make PREFIX=/usr sysconfdir=/etc package
make PREFIX=/usr sysconfdir=/etc DESTDIR="$pkgdir" install
}