summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 9d993e57c3b05aa0827a072bfd80dcb58b583230 (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# Maintainer: Nikolay Korotkiy <sikmir@gmail.com>
_orgname=ericfischer
_pkgname=datamaps
_branch=master
pkgname=${_pkgname}-git
pkgver=r290.76e620a
pkgrel=1
pkgdesc='Indexes points and lines and generates map tiles to display them'
arch=('i686' 'x86_64')
url="https://github.com/ericfischer/datamaps"
license=('BSD')
depends=('libpng')
makedepends=('git')
provides=("${pkgname//-git}=${pkgver}")
conflicts=(${pkgname//-git})
source=("${_pkgname}-${_branch}::git://github.com/${_orgname}/${_pkgname}.git#branch=${_branch}")
sha256sums=('SKIP')

pkgver() {
  cd ${_pkgname}-${_branch}

  REVISION="$(git rev-list --count HEAD).$(git rev-parse --short HEAD)"
  printf "r%s" "${REVISION}"
}

build() {
  cd ${_pkgname}-${_branch}

  make
}

package() {
  cd ${_pkgname}-${_branch}

  install -d 755 ${pkgdir}/usr/bin
  install -d 755 ${pkgdir}/usr/share
  install -d 755 ${pkgdir}/usr/share/licenses
  install -d 755 ${pkgdir}/usr/share/licenses/${_pkgname}

  for tool in encode enumerate merge render; do
    install -m 755 $tool ${pkgdir}/usr/bin/${_pkgname}-${tool}
  done
  install -m 644 LICENSE.md ${pkgdir}/usr/share/licenses/${_pkgname}
}