953e623214
Version 13.1 OBS-URL: https://build.opensuse.org/request/show/1085166 OBS-URL: https://build.opensuse.org/package/show/graphics/gpxsee?expand=0&rev=221
25 lines
531 B
Bash
25 lines
531 B
Bash
pkgname=gpxsee
|
|
pkgver=13.1
|
|
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' 'qt5-svg' 'qt5-serialport')
|
|
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
|
|
}
|