mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
22 lines
677 B
Bash
22 lines
677 B
Bash
# Contributor: Xilon <xilonmu@gmail.com>
|
|
# Contributor: Edward Toroschin <edward.hades@gmail.com>
|
|
|
|
pkgname=grc
|
|
pkgver=1.3
|
|
pkgrel=1
|
|
pkgdesc='Yet another colouriser for beautifying your logfiles or output of commands.'
|
|
arch=('any')
|
|
url='http://kassiopeia.juls.savba.sk/~garabik/software/grc.html'
|
|
license=('GPL')
|
|
depends=('python')
|
|
backup=('etc/grc.conf')
|
|
source=("http://kassiopeia.juls.savba.sk/~garabik/software/$pkgname/${pkgname}_$pkgver.tar.gz"
|
|
'install.sh.patch')
|
|
md5sums=('a4814dcee965c3ff67681f6b59e6378c'
|
|
'096bfb843ea779d1cf509f11d4fefffe')
|
|
|
|
build() {
|
|
cd "$startdir/src/$pkgname-$pkgver"
|
|
patch -Np1 -i ../install.sh.patch
|
|
./install.sh "$startdir/pkg"
|
|
}
|