# 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"