blob: 010642e30adb0ee5ab68ad8a358ecaedab5b4c84 (
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 # Depends on: libpcre ncurses
5
6 name=ccze
7 version=0.2.1
8 release=3
9 source=(http://ftp.debian.org/debian/pool/main/c/$name/${name}_$version.orig.tar.gz)
10
11 build() {
12 cd $name-$version
13
14 # GCC 4.x fixes
15 sed -i src/Makefile.in -e 's/-Wswitch -Wmulticharacter/-Wswitch/'
16 sed -i configure.ac -e '/AC_CHECK_TYPE(error_t, int)/d'
17 autoconf
18
19 ./configure \
20 --prefix=/usr \
21 --disable-nls
22
23 make
24 make DESTDIR=$PKG install
25 }
|