mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-25 02:52:13 +08:00
25 lines
571 B
Bash
25 lines
571 B
Bash
pkgname=qmapshack
|
|
pkgver=1.6.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' 'proj')
|
|
makedepends=('cmake' 'make')
|
|
replaces=('qlandkartegt')
|
|
source=("https://bitbucket.org/maproom/qmapshack/downloads/$pkgname-$pkgver.tar.gz")
|
|
sha1sums=('f67148081b55b0e8b36b53e05c4225d4d51c0cd2')
|
|
|
|
build() {
|
|
cd $pkgname-$pkgver
|
|
cmake ./ -DCMAKE_INSTALL_PREFIX=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $pkgname-$pkgver
|
|
|
|
make DESTDIR=$pkgdir install
|
|
}
|