# $Id: PKGBUILD 196715 2013-10-16 19:47:13Z ronald $ # Maintainer: Ronald van Haren # Contributor: Damir Perisa pkgname=stellarium pkgver=0.12.4 pkgrel=1 pkgdesc="A stellarium with great graphics and a nice database of sky-objects" arch=("i686" "x86_64") url="http://stellarium.free.fr/" license=('GPL2') depends=('libpng' 'glu' 'libgl' 'freetype2' 'qt4' 'openssl' 'desktop-file-utils' 'xdg-utils' 'phonon') install=stellarium.install makedepends=('cmake' 'boost' 'mesa' 'mesa-libgl') source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz stellarium.desktop stellarium.png) sha1sums=('6d3cc4dc186db831af76830fe2e636ff1f7bbc90' 'c9cc79212542238227b5bd6af99f60fe056f4ab2' 'b890d3b6c4dcfcfcc696514202af11b2a50c0fea') build() { cd ${srcdir}/${pkgname}-${pkgver} cmake . -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=RELEASE make } package() { cd ${srcdir}/${pkgname}-${pkgver} make DESTDIR=${pkgdir} install # install desktop file & pixmap install -Dm644 ${srcdir}/stellarium.desktop \ ${pkgdir}/usr/share/applications/stellarium.desktop install -Dm644 ${srcdir}/stellarium.png \ ${pkgdir}/usr/share/pixmaps/stellarium.png }