blob: 217f53ecf0cf03376d77469bf8eb490412e947bf (
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: Zacharias Knudsen <zachasme@gmail.com>
pkgname=h3-pg-git
pkgver=v0.3.1.r0.g8089502
pkgrel=1
pkgdesc="PostgreSQL bindings for H3, a hierarchical hexagonal geospatial indexing system"
arch=('x86_64')
url="https://github.com/bytesandbrains/h3-pg"
license=('Apache')
depends=('h3-git')
makedepends=('git' 'make' 'gcc')
source=("$pkgname::git+https://github.com/bytesandbrains/h3-pg.git")
md5sums=('SKIP')
pkgver() {
cd $pkgname
git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
}
build() {
cd $pkgname
make
}
package() {
cd $pkgname
make DESTDIR="$pkgdir/" install
}
|