diff options
Diffstat (limited to 'community/pingus/PKGBUILD')
-rw-r--r-- | community/pingus/PKGBUILD | 19 |
1 files changed, 13 insertions, 6 deletions
diff --git a/community/pingus/PKGBUILD b/community/pingus/PKGBUILD index 04ccb85ef..f54af971e 100644 --- a/community/pingus/PKGBUILD +++ b/community/pingus/PKGBUILD @@ -1,25 +1,32 @@ -# $Id: PKGBUILD 67202 2012-03-05 08:58:41Z ibiru $ +# $Id: PKGBUILD 74636 2012-08-01 00:58:24Z ebelanger $ # Maintainer: Eric Belanger <eric@archlinux.org> pkgname=pingus pkgver=0.7.6 -pkgrel=3 +pkgrel=5 pkgdesc="A Lemmings clone, i.e. a level-based puzzle game." arch=('i686' 'x86_64' 'mips64el') url="http://pingus.seul.org" license=('GPL') depends=('sdl_image' 'sdl_mixer' 'libgl' 'boost-libs>=1.49') makedepends=('scons' 'boost>=1.49' 'mesa') -source=(http://pingus.googlecode.com/files/${pkgname}-${pkgver}.tar.bz2 - pingus.desktop) +source=("http://pingus.googlecode.com/files/${pkgname}-${pkgver}.tar.bz2" + 'pingus.desktop' + 'pingus-0.7.6-gcc470-udl.patch') md5sums=('561798686f34d3fa4e69135d655f47ac' - '9eec34047bdcff49e08f41e81764e20c') + '9eec34047bdcff49e08f41e81764e20c' + '3730bdad38c21c67203456a985945473') sha1sums=('b5f5a25d71beb197c9466fb8928018a377f56487' - '579a1144f161ce89e6e024cea37210149b89c0c0') + '579a1144f161ce89e6e024cea37210149b89c0c0' + '143dd9969e8d100d29ed4f5b2039dde627afeb06') build() { cd ${pkgname}-${pkgver} + # fedora patch to fix error due to new standards + # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51282 + patch -Np0 -i ${srcdir}/pingus-0.7.6-gcc470-udl.patch + scons prefix=/usr } |