aboutsummaryrefslogtreecommitdiffstats
path: root/community/pgimportdoc/APKBUILD
blob: 8e77418bfed12628dda6e0880eb32967be5f4732 (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
# Contributor: Jakub Jirutka <jakub@jirutka.cz>
# Maintainer: Jakub Jirutka <jakub@jirutka.cz>
pkgname=pgimportdoc
pkgver=0.1.2
pkgrel=0
pkgdesc="CLI tool for import XML, TEXT and BYTEA documents to PostgreSQL"
url="https://github.com/okbob/pgimportdoc"
arch="all"
license="BSD"
makedepends="libedit-dev libxml2-dev postgresql-dev zlib-dev"
source="$pkgname-$pkgver.tar.gz::https://github.com/okbob/$pkgname/archive/$pkgver.tar.gz"
builddir="$srcdir/$pkgname-$pkgver"

build() {
	cd "$builddir"
	make USE_PGXS=1 all
}

check() {
	cd "$builddir"
	./pgimportdoc -V
}

package() {
	cd "$builddir"
	make USE_PGXS=1 DESTDIR="$pkgdir" install
}

sha512sums="f4e0cba9ec81bebb8530a290528c238c8aa16730f6adc89843db75e143e66262b72ac791e943df9d5897eea90c29638b161d7ca08793692d1b5e7d2c1d99286c  pgimportdoc-0.1.2.tar.gz"