summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 792a5a04803abc9325209b7ad0ca0ca40578d3f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Maintainer: Jeremy Audet <jerebear@protonmail.com>
# Contributor: Jose Riha <jose1711 [at] gmail (dot) com>

pkgname=osmupdate
pkgver=0.4.4
pkgrel=1
pkgdesc='Download, manipulate and apply OpenStreetMap changefiles'
url='https://wiki.openstreetmap.org/wiki/Osmupdate'
license=(AGPL3)
arch=(i686 x86_64)
depends=(osmconvert wget)
optdepends=('gzip: to write gzip compressed files')
source=('http://m.m.i24.cc/osmupdate.c')
sha256sums=('54760538cd325efa763a7445d15b4dde140aeafed612f626b31f52a510d6e14c')

build() {
  gcc -O3 -oosmupdate osmupdate.c
}

package() {
  install -Dm755 osmupdate "${pkgdir}/usr/bin/osmupdate"
}

# vim:set ts=2 sw=2 et: