mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-03 07:47:22 +08:00
28 lines
645 B
Bash
28 lines
645 B
Bash
pkgname=qmapshack
|
|
pkgver=1.10.0
|
|
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=('fa1783db4eb5e5a533f58c2401d5834c609753a7')
|
|
|
|
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
|
|
}
|