# $Id: PKGBUILD 54927 2011-08-28 13:23:10Z jlichtblau $ # Maintainer: Jaroslav Lichtblau # Contributor: Eric Belanger # Contributor: SmackleFunky pkgname=ltris pkgver=1.0.17 pkgrel=1 pkgdesc="A tetris clone where you have a bowl with blocks falling down" arch=('i686' 'x86_64') url="http://lgames.sourceforge.net/index.php?project=LTris" license=('GPL') depends=('sdl_mixer') install=$pkgname.install source=(http://downloads.sourceforge.net/lgames/$pkgname-$pkgver.tar.gz) sha256sums=('b4d2888bc50bb2ad9dd59f97c15fbfaee96c54d86c834f1231cd6e8af66bf52c') build() { cd ${srcdir}/${pkgname}-${pkgver} ./configure --prefix=/usr --localstatedir=/var/games make } package() { cd ${srcdir}/${pkgname}-${pkgver} make DESTDIR=${pkgdir} install install -d ${pkgdir}/usr/share/pixmaps install -m644 icons/ltris{16,32,48}.xpm ${pkgdir}/usr/share/pixmaps ./configure --prefix=/usr --localstatedir=/var/games make }