mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-03 20:57:18 +08:00
24 lines
604 B
Bash
24 lines
604 B
Bash
pkgname=qmapshack
|
|
pkgver=1.5.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")
|
|
sha256sums=('109f7979781cea2e455556368fc04ee499ffbe86493c8a4dea7fab65818e1f1d')
|
|
|
|
build() {
|
|
cd "$pkgname-$pkgver"
|
|
cmake ./ -DCMAKE_INSTALL_PREFIX=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$pkgname-$pkgver"
|
|
|
|
make DESTDIR="${pkgdir}" install
|
|
} |