mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 03:47:14 +08:00
23 lines
657 B
Bash
23 lines
657 B
Bash
# $Id: PKGBUILD 78018 2010-04-19 08:18:58Z dgriffiths $
|
|
# Contributor: John Sowiak <john@archlinux.org>
|
|
|
|
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
|