This repository has been archived on 2024-05-06. You can view files and clone it, but cannot push or open issues or pull requests.
package/controller/PKGBUILD

48 lines
1.7 KiB
Text
Raw Normal View History

2020-07-01 21:28:49 +00:00
# Maintainer: Tobias Reisinger <tobias@msrg.cc>
pkgname=emgauwa-controller
pkgver=0.2.2
pkgrel=1
epoch=
pkgdesc=""
arch=('any')
url="https://git.serguzim.me/emgauwa/controller"
license=('unknown')
groups=()
depends=('glibc' 'lmdb')
makedepends=('make' 'cmake' 'gcc')
conflicts=('emgauwa-controller')
backup=('etc/emgauwa/controller.ini')
source=("https://git.serguzim.me/emgauwa/controller/archive/v$pkgver.tar.gz"
"controller.ini"
2020-07-01 21:39:09 +00:00
"emgauwa-controller.service"
"emgauwa-controller.sysusers"
"emgauwa-controller.tmpfiles")
2020-07-01 21:31:51 +00:00
sha256sums=('8a191242a329e0b559aac06584e8513254a065ae3780d59f62955bb52fec5d7c'
2020-07-01 21:39:09 +00:00
'91d6bb80b7bfabbe3fc500c72ecc5173c70ef27483135a02739c74baa5720298'
2020-07-01 21:31:51 +00:00
'8ece4b409d5550cdae23591217e440d8599ebf2175f2a91574c0b069314879a0'
2020-07-01 21:28:49 +00:00
'b9cde58b9e9b0605ca4a1eddd78067c55aa3c8d40f80cde0a25c4da9f6f95798'
'5a4ce46c1302546509c0024d4614b5b0d47dde02467b7bf52b28ef6c4ead91e7')
prepare() {
2020-07-01 21:39:09 +00:00
cd "controller"
2020-07-01 21:28:49 +00:00
mkdir -p "build"
}
build() {
2020-07-01 21:39:09 +00:00
cd "controller/build" || exit 1
2020-07-01 21:28:49 +00:00
cmake -DWIRING_PI_DEBUG=ON ..
make
}
package() {
2020-07-01 21:39:09 +00:00
install -Dm755 "controller/build/controller" "${pkgdir}/usr/bin/emgauwa-controller"
2020-07-01 21:28:49 +00:00
install -Dm660 "controller.ini" "${pkgdir}/etc/emgauwa/controller.ini"
install -Dm644 "${pkgname}.service" "${pkgdir}/usr/lib/systemd/system/${pkgname}.service"
install -Dm644 "${pkgname}.tmpfiles" "${pkgdir}/usr/lib/tmpfiles.d/${pkgname}.conf"
install -Dm644 "${pkgname}.sysusers" "${pkgdir}/usr/lib/sysusers.d/${pkgname}.conf"
install -Ddm750 "${pkgdir}/var/lib/emgauwa"
install -Ddm750 "${pkgdir}/var/lib/emgauwa/controller"
}