blob: 2ccc3a3efbfd51127c226343927fc14a920faa9a (
plain)
1 # Description: A log colorizer written in C with plugin support.
2 # URL: http://freshmeat.net/projects/ccze/
3 # Maintainer: Danny Rawlins, crux at romster dot me
4 # Packager: Vincenzo Colosimo, vico at bicisport dot de
5 # Depends on: libpcre ncurses
6
7 name=ccze
8 version=0.2.1
9 release=3
10 source=(http://ftp.debian.org/debian/pool/main/c/$name/${name}_$version.orig.tar.gz)
11
12 build() {
13 cd $name-$version
14
15 # GCC 4.x fixes
16 sed -i src/Makefile.in -e 's/-Wswitch -Wmulticharacter/-Wswitch/'
17 sed -i configure.ac -e '/AC_CHECK_TYPE(error_t, int)/d'
18 autoconf
19
20 ./configure \
21 --prefix=/usr \
22 --mandir=/usr/man \
23 --disable-nls
24
25 make
26 make DESTDIR=$PKG install
27 }
|