# Maintainer: Luke T. Shumaker pkgbase=umorpha-eclipse pkgname=(umorpha-eclipse-leader umorpha-eclipse-follower umorpha-eclipse-admin) pkgver=0.3 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=de0f3a4a74eb315680be352b6728f294bb4e14fb") 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 }