diff options
author | root <root@rshg054.dnsready.net> | 2011-11-25 23:14:55 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2011-11-25 23:14:55 +0000 |
commit | 6a642c093f29814cdd0fdefeee3ab9400eae490f (patch) | |
tree | f2edeb17bda6dbc9e784455f1b38f3fcc7e5b64a /kde-unstable/kdeedu-kstars/PKGBUILD | |
parent | 5894dd675f4bd3ba296d262fae99b3b87a0f87fd (diff) |
Fri Nov 25 23:14:55 UTC 2011
Diffstat (limited to 'kde-unstable/kdeedu-kstars/PKGBUILD')
-rw-r--r-- | kde-unstable/kdeedu-kstars/PKGBUILD | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/kde-unstable/kdeedu-kstars/PKGBUILD b/kde-unstable/kdeedu-kstars/PKGBUILD new file mode 100644 index 000000000..38d5b4939 --- /dev/null +++ b/kde-unstable/kdeedu-kstars/PKGBUILD @@ -0,0 +1,32 @@ +# $Id: PKGBUILD 143372 2011-11-24 16:15:18Z andrea $ +# Maintainer: Andrea Scarpino <andrea@archlinux.org> + +pkgname=kdeedu-kstars +pkgver=4.7.80 +pkgrel=1 +pkgdesc="Desktop Planetarium" +url="http://kde.org/applications/education/kstars/" +arch=('i686' 'x86_64') +license=('GPL' 'LGPL' 'FDL') +groups=('kde' 'kdeedu') +depends=('kdebase-runtime' 'eigen' 'cfitsio' 'libindi') +makedepends=('cmake' 'automoc4') +install=${pkgname}.install +source=("http://download.kde.org/unstable/${pkgver}/src/kstars-${pkgver}.tar.bz2") +sha1sums=('ac705e13f83db3017e5ad6a615c264be69259f21') + +build() { + cd "${srcdir}" + mkdir build + cd build + cmake ../kstars-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DWITH_Xplanet=OFF + make +} + +package() { + cd "${srcdir}"/build + make DESTDIR="${pkgdir}" install +} |