bacae3c1e9
Version 10.2 OBS-URL: https://build.opensuse.org/request/show/948274 OBS-URL: https://build.opensuse.org/package/show/graphics/gpxsee?expand=0&rev=182
26 lines
586 B
Bash
26 lines
586 B
Bash
pkgname=gpxsee
|
|
pkgver=10.2
|
|
pkgrel=1
|
|
pkgdesc='GPS log files visualizing and analyzing tool'
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.gpxsee.org/"
|
|
license=('GPL3')
|
|
depends=('qt5-base' 'qt5-imageformats' 'qt5-svg' 'qt5-location')
|
|
makedepends=('qt5-tools')
|
|
provides=("${pkgname}=${pkgver}")
|
|
source=("GPXSee-${pkgver}.tar.gz")
|
|
sha256sums=('SKIP')
|
|
|
|
build() {
|
|
cd GPXSee-${pkgver}
|
|
lrelease gpxsee.pro
|
|
qmake PREFIX=/usr gpxsee.pro
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd GPXSee-${pkgver}
|
|
make INSTALL_ROOT="$pkgdir" install
|
|
install -Dm644 pkg/appdata.xml "$pkgdir"/usr/share/metainfo/$pkgname.appdata.xml
|
|
}
|