# Maintainer: jc_gargma # Maintainer (AUR): Timothy Mertz # # I maintain this because: # AUR version uses git pkgname="icecream-sundae" pkgver=1.0.0 pkgrel=2 pkgdesc="Commandline Monitor for Icecream" arch=('i686' 'x86_64') url="https://github.com/JPEWdev/icecream-sundae" license=('GPL2') depends=('icecream') makedepends=('git' 'meson' 'gcc' 'automake' 'pkgconfig') conflicts=('icecream-sundae-git') source=($pkgname-$pkgver.tar.gz::https://github.com/JPEWdev/icecream-sundae/archive/v$pkgver.tar.gz) b2sums=('8a7c4286516884613ea08d0a6ebbba6d411ae52dac06d057a5781f302e991a9749954bd0af997959f99b20f84a8f68e71b21eedf6e640cf0db9473c5da028210') build() { cd "$pkgname-$pkgver" meson --buildtype release --prefix /usr build ninja -C build } check() { cd "$pkgname-$pkgver" ninja -C build test } package() { cd "$pkgname-$pkgver" DESTDIR="$pkgdir/" ninja -C build install }