2013-12-18 02:36:04 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
2013-12-18 02:41:12 +08:00
|
|
|
# Maintainer Manuel Tortosa <manutortosa@chakra-project@org>
|
2011-07-23 02:02:15 +08:00
|
|
|
|
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}
|
2013-12-22 21:54:55 +08:00
|
|
|
pkgrel=2
|
2011-07-23 02:02:15 +08:00
|
|
|
pkgdesc="Desktop Globe"
|
|
|
|
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'
|
|
|
|
license=('GPL' 'LGPL' 'FDL')
|
2013-05-06 00:54:50 +08:00
|
|
|
depends=("kde-runtime>=${_kdever}" 'shapelib')
|
|
|
|
makedepends=('cmake' 'automoc4' 'qt-mobility' 'gpsd')
|
|
|
|
optdepends=('qt-mobility: enable QtMobility Location Provider'
|
|
|
|
'gpsd: support for gps devices')
|
2011-07-23 02:02:15 +08:00
|
|
|
provides=('marble')
|
|
|
|
groups=("kde" "kdeedu" "kde-uninstall")
|
2012-03-06 07:57:58 +08:00
|
|
|
categories=('education')
|
2013-07-24 08:15:53 +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")
|
2013-12-17 20:32:36 +08:00
|
|
|
sha1sums=(`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() {
|
2011-07-23 02:02:15 +08:00
|
|
|
cd ${srcdir}/${_pkgname}-${pkgver}
|
2012-02-06 04:46:15 +08:00
|
|
|
cmake . -DCMAKE_INSTALL_PREFIX=/usr \
|
|
|
|
-DCMAKE_BUILD_TYPE=Release \
|
2011-07-23 02:02:15 +08:00
|
|
|
-DCMAKE_SKIP_RPATH=ON \
|
|
|
|
-DCMAKE_{SHARED,MODULE,EXE}_LINKER_FLAGS='-Wl,--no-undefined -Wl,--as-needed'
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2012-02-06 04:46:15 +08:00
|
|
|
package() {
|
2011-07-23 02:02:15 +08:00
|
|
|
cd ${srcdir}/${_pkgname}-${pkgver}
|
2012-02-06 04:46:15 +08:00
|
|
|
make DESTDIR=${pkgdir} install
|
2011-07-23 02:02:15 +08:00
|
|
|
}
|