# Maintainer: David Harrigan # Contributer: Dmitri Goutnik pkgname=pspg pkgver=3.1.3 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=('2f4d1660a150c988c3b1d126a24fe8cb0f76471a829806dacb3ed85fe0e45c8d') 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: