diff options
Diffstat (limited to 'community/ltris/PKGBUILD')
-rw-r--r-- | community/ltris/PKGBUILD | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/community/ltris/PKGBUILD b/community/ltris/PKGBUILD deleted file mode 100644 index 17db56fa0..000000000 --- a/community/ltris/PKGBUILD +++ /dev/null @@ -1,34 +0,0 @@ -# $Id: PKGBUILD 60814 2011-12-18 17:13:32Z jlichtblau $ -# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org> -# Contributor: Eric Belanger <eric@archlinux.org> -# Contributor: SmackleFunky <smacklefunky@optusnet.com.au> - -pkgname=ltris -pkgver=1.0.18 -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') -backup=('var/games/ltris.hscr') -install=$pkgname.install -changelog=$pkgname.changelog -source=(http://downloads.sourceforge.net/lgames/$pkgname-$pkgver.tar.gz) -sha256sums=('3cba90365d50e79601368499af77d54cb03c0cf2544324e5df246eb1eeaa0e30') - -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 -} |