40952be374
Version 13.15 OBS-URL: https://build.opensuse.org/request/show/1140377 OBS-URL: https://build.opensuse.org/package/show/graphics/gpxsee?expand=0&rev=248
25 lines
532 B
Bash
25 lines
532 B
Bash
pkgname=gpxsee
|
|
pkgver=13.15
|
|
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
|
|
}
|