summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: e0762cadf5e0b066f24cce6cbf679d6c6cf21f17 (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
# Maintainer: Ivan Shapovalov <intelfx@intelfx.name>
# Contributor: Marco44 (Marc Cousin) <cousinmarc at gmail dot com>

pkgname=hypopg
pkgver=1.3.1
pkgrel=1
pkgdesc="Hypothetical indexes for PostgreSQL... ask the optimizer if this hypothetical index would help"
arch=('i686' 'x86_64' 'armv7h' 'aarch64')
url="https://github.com/HypoPG/hypopg"
license=('BSD')
depends=('postgresql')
makedepends=(git)
options=(!emptydirs !libtool)
source=("git+https://github.com/HypoPG/hypopg.git#tag=${pkgver}")
md5sums=('SKIP')
install='hypopg.install'

build() {
  cd hypopg
  make
}

package() {
  cd hypopg
  make DESTDIR="$pkgdir" install
}