28 lines
659 B
Plaintext
28 lines
659 B
Plaintext
# Description: A log colorizer written in C with plugin support.
|
|
# URL: http://freshmeat.net/projects/ccze/
|
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
|
# Packager: Vincenzo Colosimo, vico at bicisport dot de
|
|
# Depends on: libpcre ncurses
|
|
|
|
name=ccze
|
|
version=0.2.1
|
|
release=3
|
|
source=(http://ftp.debian.org/debian/pool/main/c/$name/${name}_$version.orig.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
# GCC 4.x fixes
|
|
sed -i src/Makefile.in -e 's/-Wswitch -Wmulticharacter/-Wswitch/'
|
|
sed -i configure.ac -e '/AC_CHECK_TYPE(error_t, int)/d'
|
|
autoconf
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--mandir=/usr/man \
|
|
--disable-nls
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|