core/root-tail/PKGBUILD

23 lines
657 B
Bash
Raw Normal View History

2010-05-17 15:50:50 +08:00
# $Id: PKGBUILD 78018 2010-04-19 08:18:58Z dgriffiths $
2010-03-14 23:48:48 +08:00
# Contributor: John Sowiak <john@archlinux.org>
pkgname=root-tail
pkgver=1.2
2010-05-17 15:50:50 +08:00
pkgrel=4
2010-03-14 23:48:48 +08:00
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')
2010-05-17 15:50:50 +08:00
source=(http://www.goof.com/pcg/marc/data/${pkgname}-${pkgver}.tar.gz)
2010-03-14 23:48:48 +08:00
md5sums=('5a4b3c4c7ab3bed1f4575e9688aac5de')
build() {
2010-05-17 15:50:50 +08:00
cd ${srcdir}/${pkgname}-${pkgver}
2010-03-14 23:48:48 +08:00
xmkmf -a || return 1
make || return 1
2010-05-17 15:50:50 +08:00
make DESTDIR=${pkgdir} MANPATH=/usr/share/man install install.man || return 1
2010-03-14 23:48:48 +08:00
}
# vim: ts=2 sw=2 et ft=sh