diff options
author | root <root@rshg054.dnsready.net> | 2011-08-10 23:14:36 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2011-08-10 23:14:36 +0000 |
commit | e81c6fe4fb38144709923b2da3ab68a01712a26b (patch) | |
tree | e98431d7c18b82156a91c9cb208d725c06e84793 /community/ltris/PKGBUILD | |
parent | a306c2530354c1c02351c4cc02eefa53c8d23eac (diff) |
Wed Aug 10 23:14:35 UTC 2011
Diffstat (limited to 'community/ltris/PKGBUILD')
-rw-r--r-- | community/ltris/PKGBUILD | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/community/ltris/PKGBUILD b/community/ltris/PKGBUILD index 54fcd247b..4eb9204db 100644 --- a/community/ltris/PKGBUILD +++ b/community/ltris/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 7041 2009-12-30 05:28:27Z ebelanger $ +# $Id: PKGBUILD 53908 2011-08-09 20:01:00Z ttopper $ # Maintainer: Eric Belanger <eric@archlinux.org> # Contributor: SmackleFunky <smacklefunky@optusnet.com.au> pkgname=ltris -pkgver=1.0.14 +pkgver=1.0.16 pkgrel=1 pkgdesc="A tetris clone where you have a bowl with blocks falling down." arch=('i686' 'x86_64') @@ -12,14 +12,14 @@ license=('GPL') depends=('sdl_mixer') install=ltris.install source=(http://downloads.sourceforge.net/lgames/${pkgname}-${pkgver}.tar.gz) -md5sums=('7eff57f492bc880a02a58c64f638959e') -sha1sums=('031262093c99376c3c7349798f099c1e7ea0867f') +md5sums=('07b5a41f8de62ea083575384f05545c6') +sha1sums=('08785fc962ed83678b955f61a9a87a0215938123') build() { cd "${srcdir}/${pkgname}-${pkgver}" - ./configure --prefix=/usr --localstatedir=/var/games || return 1 - make || return 1 - make DESTDIR="${pkgdir}" install || return 1 + ./configure --prefix=/usr --localstatedir=/var/games + make + make DESTDIR="${pkgdir}" install install -d "${pkgdir}/usr/share/pixmaps" install -m644 icons/ltris{16,32,48}.xpm "${pkgdir}/usr/share/pixmaps" @@ -29,3 +29,4 @@ build() { chmod 775 "${pkgdir}/var/games" rm "${pkgdir}/var/games/ltris.hscr" } + |