41 lines
1.2 KiB
Bash
41 lines
1.2 KiB
Bash
# Maintainer: John Baier <ebusd@ebusd.eu>
|
|
# Contributor: Milan Knizek <knizek volny cz>
|
|
# Usage: makepkg
|
|
pkgname=ebusd
|
|
pkgver=2.1
|
|
pkgrel=1
|
|
pkgdesc="ebusd, the daemon for communication with eBUS heating systems."
|
|
arch=('i686' 'x86_64' 'armv6h')
|
|
url=https://github.com/john30/ebusd/
|
|
license=('GPL3')
|
|
depends=()
|
|
optdepends=()
|
|
conflicts=('ebusd' 'ebusd-git')
|
|
provides=('ebusd')
|
|
install=ebusd.install
|
|
options=()
|
|
backup=('etc/conf.d/ebusd')
|
|
source=("https://github.com/john30/${pkgname}/archive/v${pkgver}.tar.gz")
|
|
|
|
pkgver() {
|
|
cat "${srcdir}/${pkgname}-${pkgver}/VERSION"|sed -e 's#-#_#g'
|
|
}
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./autogen.sh
|
|
make -j1
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make DESTDIR="$pkgdir" install-strip
|
|
|
|
install -d "${pkgdir}/usr/lib/systemd/system"
|
|
install -m 0644 contrib/archlinux/systemd/ebusd.service "${pkgdir}/usr/lib/systemd/system"
|
|
install -d "${pkgdir}/etc/conf.d"
|
|
install -m 0644 contrib/archlinux/conf.d/ebusd "${pkgdir}/etc/conf.d/ebusd"
|
|
}
|
|
# update md5sums: updpkgsums
|
|
md5sums=('00093769915882626849c56a16230b7b')
|