# Maintainer: Philipp Fent # Contributor: Ben Widawsky (icecream package) # Contributor: Isaac C. Aronson (original PKGBUILD) # Contributor: Sergio Correia (modifications derived from icecream-git package) _pkgname=icecream pkgname=icecream-git pkgver=r1959.e39103f pkgrel=1 pkgdesc="takes compile jobs from your build and distributes it to remote machines allowing a parallel build on several machines." url="http://en.opensuse.org/Icecream" license=('GPL2') makedepends=('docbook2x') depends=('bash' 'libcap-ng' 'libarchive' 'lzo' 'zstd') provides=('icecream') optdepends=('icecream-sundae: A commandline monitor for Icecream' 'icemon: Icecream GUI monitor' 'ccache: ccache enabled remote builds.') conflicts=('icecream') backup=('etc/icecream.conf') arch=('x86_64') install=icecream.install source=('git+https://github.com/icecc/icecream.git' icecream.conf icecream.service icecream-scheduler.service icecreamd icecream-schedulerd ld-icecream.conf) sha256sums=('SKIP' '4c1b993761600955a2be53e945a698638ef861a513258956d8aac0e0f8df3dfe' '3bd9286e2a4ef29a41fe414caf3ffb56ae24e2287272dc0d60d62599d20d8cf9' '9b756a140ac3983efa4cddf6590af72d3681834b95ef1f879f34da775dd418cd' 'cdb7794bf53486eb46716e57172c58cd4cb97b7649cd98178f0eefe03444a88a' 'c6807f49ac0e191136047d22d01639b04fad9b009d829528dafe02665712eb0f' '2221f16c3293dfd86e4d0442745b104380a4a1623ca3c9eb6bfe5771552fac65') pkgver() { cd "$srcdir/${_pkgname}" printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)" } build() { cd "$srcdir/${_pkgname}" ./autogen.sh ./configure --prefix=/usr/lib/icecream --enable-shared --disable-static --mandir=/usr/share/man make } package() { cd "$srcdir/${_pkgname}" make DESTDIR="$pkgdir" install install -D -m755 "$srcdir"/icecream.conf "$pkgdir/etc/icecream.conf" install -D -m755 "$srcdir"/icecreamd "$pkgdir/usr/lib/icecream/icecreamd" install -D -m755 "$srcdir"/icecream-schedulerd "$pkgdir/usr/lib/icecream/icecream-schedulerd" install -D -m644 "$srcdir"/icecream-scheduler.service "$pkgdir/usr/lib/systemd/system/icecream-scheduler.service" install -D -m644 "$srcdir"/icecream.service "$pkgdir/usr/lib/systemd/system/icecream.service" install -D -m644 "$srcdir"/ld-icecream.conf "${pkgdir}/etc/ld.so.conf.d/icecream.conf" # moving pkg-config file to its usual place install -D -m644 "${pkgdir}/usr/lib/icecream/lib/pkgconfig/icecc.pc" "${pkgdir}/usr/lib/pkgconfig/icecc.pc" rm -rf "${pkgdir}/usr/lib/icecream/lib/pkgconfig" } # vim:set ts=2 sw=2 et: