diff options
Diffstat (limited to 'extra/celestia/PKGBUILD')
-rw-r--r-- | extra/celestia/PKGBUILD | 30 |
1 files changed, 21 insertions, 9 deletions
diff --git a/extra/celestia/PKGBUILD b/extra/celestia/PKGBUILD index 702e3e05f..47608a909 100644 --- a/extra/celestia/PKGBUILD +++ b/extra/celestia/PKGBUILD @@ -1,38 +1,50 @@ -# $Id: PKGBUILD 127269 2011-06-12 08:43:30Z ronald $ +# $Id: PKGBUILD 148690 2012-02-05 11:47:02Z ibiru $ # Maintainer: Ronald van Haren <ronald.archlinux.org> # Contributor : Damir Perisa <damir.perisa@bluewin.ch> pkgname=celestia pkgver=1.6.1 -pkgrel=1 +pkgrel=2 pkgdesc="Real-time space simulation" arch=('i686' 'x86_64') license=('GPL') url="http://www.shatters.net/celestia/" depends=('gtk2' 'libtheora' 'lua' 'gtkglext' 'glut' 'libxmu' 'mesa' 'libjpeg') options=('!makeflags') -source=(http://downloads.sourceforge.net/sourceforge/celestia/${pkgname}-${pkgver}.tar.gz - celestia-1.5.1-gcc44.patch celestia-1.6.1-gentoo.patch) +source=("http://downloads.sourceforge.net/sourceforge/celestia/${pkgname}-${pkgver}.tar.gz" + 'celestia-1.6.1-gcc46.patch' + 'celestia-1.6.1-libpng15.patch' + 'celestia-1.6.1-linking.patch') sha1sums=('1f0fdf4525a8b9d6c708e1f6383babed670d18e7' - '5ab2769e239a89468bb8ffb5740cbeec6018143c' - 'aebf894630fdba4c4d429622f5e2b8da56d8b61e') + '7c08ca391603806d788cb8f3342acedafc924eef' + '46ecc4e10b24191384bc848c206652498843adf0' + '534c8eee18d13a868c91f0b870ebecc05f3e7ae1') build() { cd ${srcdir}/${pkgname}-${pkgver} # build patch - patch -Np0 < ${srcdir}/celestia-1.5.1-gcc44.patch - patch -Np0 -i ${srcdir}/celestia-1.6.1-gentoo.patch + patch -Np0 -i "${srcdir}/celestia-1.6.1-gcc46.patch" + patch -Np0 -i "${srcdir}/celestia-1.6.1-libpng15.patch" + patch -Np1 -i "${srcdir}/celestia-1.6.1-linking.patch" + # This version of Celestia has a bug in the font rendering and requires -fsigned-char + export CFLAGS="$CFLAGS -fsigned-char" + export CXXFLAGS="$CXXFLAGS -fsigned-char" + + autoreconf ./configure --prefix=/usr \ --with-lua=/usr \ --datadir=/usr/share \ - --with-gtk + --with-gtk \ + --disable-rpath \ + --with-lua make } package() { cd ${srcdir}/${pkgname}-${pkgver} + make DESTDIR=${pkgdir} install } |