# Maintainer: Thomas Ascher # Contributor: Thomas Ascher pkgname=gmines.app _pkgname=GMines pkgrel=2 pkgver=0.2 pkgdesc="A clone of the well-known minesweeper game." arch=('i686' 'x86_64') url="http://www.nongnu.org/gap/gmines/index.html" license=('GPL') groups=('gnustep') depends=('gnustep-back' 'gnustep-base' 'gnustep-gui') makedepends=('gcc-objc' 'gnustep-make') source=("http://savannah.nongnu.org/download/gap/$_pkgname-$pkgver.tar.gz") sha256sums=('a7100c9846b548ef2d27c35b80370b30769dca3ac8eeff5f15a227474843c067') build() { cd "$_pkgname-$pkgver" make } package() { cd "$_pkgname-$pkgver" make DESTDIR="$pkgdir/" install install -D -m644 "$pkgdir/usr/lib/GNUstep/Applications/$_pkgname.app/Resources/$_pkgname.desktop" \ "$pkgdir/usr/share/applications/$_pkgname.desktop" } post_install() { update-desktop-database -q } post_upgrade() { post_install $1 } post_remove() { post_install $1 }