# Maintainer: David Harrigan # Contributer: Dmitri Goutnik pkgname=pspg pkgver=2.5.0 pkgrel=1 pkgdesc='Tabular data pager designed to be used with psql' arch=('x86_64') url="https://github.com/okbob/pspg" license=('BSD') depends=('readline') conflicts=('pspg-git') source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz") sha256sums=('e68f2fb4cca91baf3e9c3f57894dbd12b6b28aec22f2ccba096313a6e33326ab') build() { cd ${pkgname}-${pkgver} ./configure --prefix=/usr make } package() { cd ${pkgname}-${pkgver} make DESTDIR="${pkgdir}/" install install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" } # vim:set ts=2 sw=2 et: