mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
22 lines
639 B
Bash
22 lines
639 B
Bash
# $Id: PKGBUILD 35874 2009-04-17 23:38:11Z eric $
|
|
# Contributor: John Sowiak <john@archlinux.org>
|
|
|
|
pkgname=root-tail
|
|
pkgver=1.2
|
|
pkgrel=3
|
|
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
|