desktop/qmapshack/PKGBUILD

25 lines
584 B
Bash
Raw Normal View History

2015-12-31 23:06:41 +08:00
pkgname=qmapshack
2016-07-18 21:59:23 +08:00
pkgver=1.6.3
2016-03-29 15:08:18 +08:00
pkgrel=1
2015-12-31 23:06:41 +08:00
pkgdesc='Plan your next outdoor trip'
arch=('x86_64')
url='https://bitbucket.org/maproom/qmapshack/'
license=('GPL3')
2016-07-18 21:59:23 +08:00
depends=('gdal' 'routino' 'qt5-tools' 'qt5-script' 'qt5-webkit' 'proj')
2015-12-31 23:06:41 +08:00
makedepends=('cmake' 'make')
replaces=('qlandkartegt')
source=("https://bitbucket.org/maproom/qmapshack/downloads/$pkgname-$pkgver.tar.gz")
2016-07-18 21:59:23 +08:00
sha1sums=('5fa71fdd46a4b26ac8a2d8070a31f48087988f21')
2015-12-31 23:06:41 +08:00
build() {
2016-03-02 16:39:29 +08:00
cd $pkgname-$pkgver
2015-12-31 23:06:41 +08:00
cmake ./ -DCMAKE_INSTALL_PREFIX=/usr
make
}
package() {
2016-03-02 16:39:29 +08:00
cd $pkgname-$pkgver
2015-12-31 23:06:41 +08:00
2016-03-02 16:39:29 +08:00
make DESTDIR=$pkgdir install
2016-02-26 20:49:43 +08:00
}