updated on Sun Jan 15 08:01:04 UTC 2012
[aur-mirror.git] / pbf2osm-git / PKGBUILD
blob1a8791a2649f4001c0f4b14638525ca2e83ca81e
1 # Maintainer: Jose Riha <jose1711 gmail com>
3 pkgname=pbf2osm-git
4 pkgver=20110707
5 pkgrel=1
6 pkgdesc="tool to convert pbf to osm"
7 arch=('x86_64' 'i686')
8 url="http://git.openstreetmap.nl/index.cgi/pbf2osm.git/"
9 license=('GPL')
10 depends=('protobuf-c')
12 _gitroot="http://git.openstreet.nl/pbf2osm.git"
13 _gitname="pbf2osm"
15 build() {
16   cd "$srcdir"
17   msg "Connecting to GIT server...."
19   if [ -d $_gitname ] ; then
20     cd $_gitname && git pull origin
21     msg "The local files are updated."
22   else
23     git clone $_gitroot $_gitname
24   fi
26   cd $_gitname
27   git submodule init
28   git submodule update
30   msg "GIT checkout done or server timeout"
31   msg "Starting make..."
33   cd src
34   make
35
37 package() {
38   install -Dm755 $srcdir/pbf2osm/src/pbf2osm $pkgdir/usr/bin/pbf2osm