desktop/qmapshack/PKGBUILD
2017-05-24 01:28:01 +01:00

28 lines
644 B
Bash

pkgname=qmapshack
pkgver=1.8.1
pkgrel=1
pkgdesc='Plan your next outdoor trip'
arch=('x86_64')
url='https://bitbucket.org/maproom/qmapshack/'
license=('GPL3')
depends=('gdal' 'routino' 'qt5-tools' 'qt5-script' 'qt5-webkit' 'proj' 'quazip')
makedepends=('cmake')
source=("https://bitbucket.org/maproom/qmapshack/downloads/$pkgname-$pkgver.tar.gz")
sha1sums=('ce014be90313f7dbb3a04b3b2ffcfe47c60fdbab')
prepare() {
cd $pkgname-$pkgver
[[ -d build ]] || mkdir build
}
build() {
cd $pkgname-$pkgver/build
cmake .. -DCMAKE_INSTALL_PREFIX=/usr
make
}
package() {
cd $pkgname-$pkgver/build
make DESTDIR=$pkgdir install
}