2014-01-13 00:22:06 +08:00
|
|
|
# Maintainer: H W Tovetjärn (totte) <totte@tott.es>
|
|
|
|
# Contributors: Manuel Tortosa <manutortosa@chakra-project.org>
|
2013-12-18 02:36:04 +08:00
|
|
|
|
|
|
|
# Include global configuration
|
2012-03-03 22:46:45 +08:00
|
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
2011-07-23 02:02:15 +08:00
|
|
|
|
|
|
|
pkgname=kdeedu-marble
|
|
|
|
_pkgname=marble
|
2012-03-03 14:08:36 +08:00
|
|
|
pkgver=${_kdever}
|
2014-02-01 19:24:18 +08:00
|
|
|
pkgrel=1
|
2014-01-13 05:14:23 +08:00
|
|
|
pkgdesc="Desktop globe"
|
2011-07-23 02:02:15 +08:00
|
|
|
url="http://kde.org/applications/education/marble/"
|
2012-04-09 07:20:48 +08:00
|
|
|
screenshot="http://www.kde.org/images/screenshots/marble.png"
|
2012-11-29 11:49:07 +08:00
|
|
|
arch=('x86_64')
|
2011-07-23 02:02:15 +08:00
|
|
|
url='http://www.kde.org'
|
2014-01-13 05:14:23 +08:00
|
|
|
license=('GPL'
|
|
|
|
'LGPL'
|
|
|
|
'FDL')
|
|
|
|
depends=("kde-runtime>=${_kdever}"
|
|
|
|
'shapelib')
|
|
|
|
makedepends=('cmake'
|
|
|
|
'automoc4'
|
|
|
|
'qt-mobility'
|
|
|
|
'gpsd')
|
2013-05-06 00:54:50 +08:00
|
|
|
optdepends=('qt-mobility: enable QtMobility Location Provider'
|
|
|
|
'gpsd: support for gps devices')
|
2011-07-23 02:02:15 +08:00
|
|
|
provides=('marble')
|
2014-01-13 05:14:23 +08:00
|
|
|
groups=("kde"
|
|
|
|
"kdeedu"
|
|
|
|
"kde-uninstall")
|
2012-03-06 07:57:58 +08:00
|
|
|
categories=('education')
|
2014-01-13 05:14:23 +08:00
|
|
|
options=('docs'
|
|
|
|
'!header'
|
|
|
|
'debug'
|
|
|
|
'log')
|
2011-07-23 02:02:15 +08:00
|
|
|
install=${pkgname}.install
|
2012-03-30 09:29:52 +08:00
|
|
|
source=("$_mirror/${_pkgname}-$_kdever.tar.xz")
|
2014-01-11 20:59:04 +08:00
|
|
|
sha256sums=(`grep ${_pkgname}-$_kdever.tar.xz ../checksums.txt | cut -d " " -f1`)
|
2011-07-23 02:02:15 +08:00
|
|
|
|
2012-02-06 04:46:15 +08:00
|
|
|
build() {
|
2014-01-13 05:14:23 +08:00
|
|
|
cd ${srcdir}/${_pkgname}-${pkgver}
|
|
|
|
cmake . \
|
|
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
2014-06-14 02:40:10 +08:00
|
|
|
-DCMAKE_BUILD_TYPE=${_build_type} \
|
2014-01-13 05:14:23 +08:00
|
|
|
-DCMAKE_SKIP_RPATH=ON \
|
2014-10-17 05:31:47 +08:00
|
|
|
-DQTONLY=FALSE \
|
|
|
|
-DWITH_DESIGNER_PLUGIN=ON \
|
2014-01-13 05:14:23 +08:00
|
|
|
-DCMAKE_{SHARED,MODULE,EXE}_LINKER_FLAGS='-Wl,--no-undefined -Wl,--as-needed'
|
|
|
|
make
|
2011-07-23 02:02:15 +08:00
|
|
|
}
|
|
|
|
|
2012-02-06 04:46:15 +08:00
|
|
|
package() {
|
2014-01-13 05:14:23 +08:00
|
|
|
cd ${srcdir}/${_pkgname}-${pkgver}
|
2014-10-17 05:31:47 +08:00
|
|
|
make DESTDIR=${pkgdir} install
|
|
|
|
|
|
|
|
# Cleanup unused files
|
|
|
|
rm ${pkgdir}/usr/share/applications/kde4/marble-mobile.desktop
|
|
|
|
rm ${pkgdir}/usr/share/applications/kde4/marble-qt.desktop
|
|
|
|
rm ${pkgdir}/usr/share/applications/kde4/marble-touch.desktop
|
|
|
|
|
|
|
|
rm ${pkgdir}/usr/bin/marble-mobile
|
|
|
|
rm ${pkgdir}/usr/bin/marble-qt
|
|
|
|
rm ${pkgdir}/usr/bin/marble-touch
|
|
|
|
|
2011-07-23 02:02:15 +08:00
|
|
|
}
|