# Maintainer: Luke T. Shumaker pkgbase=umorpha-eclipse pkgname=(umorpha-eclipse-leader umorpha-eclipse-follower umorpha-eclipse-admin) pkgver=0.8 pkgrel=1 arch=('x86_64') pkgdesc='Umorpha Eclipse CI job manager' url="https://git.mothstuff.lol/lukeshu/eclipse" license=('AGPL') depends=(git sqlite) makedepends=(git go) source=("git+https://git.mothstuff.lol/lukeshu/eclipse.git#commit=062a17dbcae16a0ddb20f134a888f6c0271477db") sha256sums=('SKIP') _config=( prefix=/usr sysconfdir=/etc localstatedir=/var runstatedir=/run ) build() { cd eclipse make "${_config[@]}" } package_umorpha-eclipse-leader() { pkgdesc+=' - central leader programs' cd eclipse make "${_config[@]}" DESTDIR="$pkgdir" install-leader } package_umorpha-eclipse-follower() { pkgdesc+=' - follower programs' cd eclipse make "${_config[@]}" DESTDIR="$pkgdir" install-follower } package_umorpha-eclipse-admin() { pkgdesc+=' - administration tools' cd eclipse make "${_config[@]}" DESTDIR="$pkgdir" install-admin }