summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 4fed4c056e8024dc812ae21c7278318ce0758f84 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Maintainer: Mansour Behabadi <mansour@oxplot.com>

pkgname="cstore_fdw"
pkgver=1.7.0
pkgrel=1
pkgdesc="Columnar store for analytics with PostgreSQL"
url="https://citusdata.github.io/cstore_fdw/"
license=("Apache")
arch=('i686' 'x86_64')
depends=('protobuf-c' 'postgresql>=9.3', 'postgresql<13')
source=("https://github.com/citusdata/$pkgname/archive/v$pkgver.tar.gz")
sha256sums=('bd8a06654b483d27b48d8196cf6baac0c7828b431b49ac097923ac0c54a1c38c')

build() {
  cd "$pkgname-$pkgver"
  make
}
package() {
  cd "$pkgname-$pkgver"
  make DESTDIR="$pkgdir/" install
}