summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 50c655fdc1dd3fb6f84e9e636028bee00cb7b916 (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
# Maintainer: Alexander Nicholi <me@nicholatian.com>
pkgname=mapjson
pkgver=1
pkgrel=1
epoch=
pkgdesc="Process JSON for map data in Gen 3 pret repositories"
arch=('i686' 'x86_64')
url="https://code.caveoforig.in/alex/$pkgname"
license=('BSD-2')
depends=()
makedepends=('git')
provides=("$pkgname")
conflicts=("$pkgname")
source=("git+https://code.caveoforig.in/alex/$pkgname.git")
md5sums=('SKIP')

build() {
  cd "$srcdir/$pkgname"

  make
}

package() {
  cd "$srcdir/$pkgname"

  install -Dsm755 "$srcdir/$pkgname/$pkgname" "$pkgdir/usr/bin/$pkgname"
}