# $Id: PKGBUILD 78018 2010-04-19 08:18:58Z dgriffiths $ # Contributor: John Sowiak pkgname=root-tail pkgver=1.2 pkgrel=4 pkgdesc="Displays logfiles in different colours on your root-window" arch=('i686' 'x86_64') url="http://www.goof.com/pcg/marc/root-tail.html" license=('GPL') depends=('libxext') makedepends=('imake') source=(http://www.goof.com/pcg/marc/data/${pkgname}-${pkgver}.tar.gz) md5sums=('5a4b3c4c7ab3bed1f4575e9688aac5de') build() { cd ${srcdir}/${pkgname}-${pkgver} xmkmf -a || return 1 make || return 1 make DESTDIR=${pkgdir} MANPATH=/usr/share/man install install.man || return 1 } # vim: ts=2 sw=2 et ft=sh