diff options
Diffstat (limited to 'community/gluon/PKGBUILD')
-rw-r--r-- | community/gluon/PKGBUILD | 30 |
1 files changed, 17 insertions, 13 deletions
diff --git a/community/gluon/PKGBUILD b/community/gluon/PKGBUILD index b16442551..12d20a320 100644 --- a/community/gluon/PKGBUILD +++ b/community/gluon/PKGBUILD @@ -1,33 +1,37 @@ -# $Id: PKGBUILD 61254 2011-12-26 12:01:45Z andrea $ +# $Id: PKGBUILD 72719 2012-06-21 07:09:44Z andrea $ # Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com> # Contributor: Ivan Sichmann Freitas <ivansichfreitas@gmail.com> pkgname=gluon pkgver=0.71.0 _pkgver=0.71 -pkgrel=3 +pkgrel=4 pkgdesc="A free and open source platform for creating and distributing games" arch=('i686' 'x86_64') url="http://gluon.gamingfreedom.org/" license=('LGPL') -depends=('qt' 'kdebase-runtime' 'libsndfile' 'openal' 'alure' 'attica') +depends=('kdelibs' 'libsndfile' 'alure') makedepends=('cmake' 'automoc4' 'mesa' 'kdevplatform') install=gluon.install -source=("http://download.kde.org/download.php?url=unstable/$pkgname/$_pkgver/src/$pkgname-$pkgver.tar.gz") -md5sums=('e4f284c0ae00e5b8a58cc3e6201857fe') +source=("http://download.kde.org/unstable/$pkgname/$_pkgver/src/$pkgname-$pkgver.tar.gz" + 'gcc47.patch') +md5sums=('e4f284c0ae00e5b8a58cc3e6201857fe' + '92adbf8b23f4af2a15a005b031c81c5f') build() { - cd "$srcdir/$pkgname-$pkgver" + cd "$srcdir"/$pkgname-$pkgver + patch -p1 -i "$srcdir"/gcc47.patch - [[ -d build ]] && rm -rf build - mkdir build && cd build - cmake -DCMAKE_INSTALL_PREFIX=/usr .. + cd "$srcdir" + mkdir build + cd build + cmake ../$pkgname-$pkgver \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_BUILD_TYPE=Release make } package() { - cd "$srcdir/$pkgname-$pkgver" - - cd build - make DESTDIR="$pkgdir/" install + cd "$srcdir"/build + make DESTDIR="$pkgdir" install } |