Martin Tůma
2024-09-18 07:07:07 +00:00
committed by Git OBS Bridge
commit 5afda7e7be
16 changed files with 3284 additions and 0 deletions

26
PKGBUILD Normal file
View File

@@ -0,0 +1,26 @@
pkgname=gpxsee
pkgver=13.25
pkgrel=1
pkgdesc='GPS log files visualizing and analyzing tool'
arch=('i686' 'x86_64')
url="http://www.gpxsee.org/"
license=('GPL3')
depends=('qt6-imageformats' 'qt6-positioning' 'qt6-svg'
'qt6-serialport' 'hicolor-icon-theme')
makedepends=('qt6-tools')
optdepends=('qtpbfimageplugin-qt6: Mapbox vector tiles (MVT) files support')
provides=("${pkgname}=${pkgver}")
source=("GPXSee-${pkgver}.tar.gz")
sha256sums=('SKIP')
build() {
cd GPXSee-${pkgver}
/usr/lib/qt6/lrelease-pro gpxsee.pro
qmake6 PREFIX=/usr gpxsee.pro
make
}
package() {
cd GPXSee-${pkgver}
make INSTALL_ROOT="$pkgdir" install
}