contrib/ccze/Pkgfile

28 lines
673 B
Plaintext
Raw Normal View History

2006-11-20 07:26:53 +10:00
# Description: A log colorizer written in C with plugin support.
2010-11-20 11:40:23 +11:00
# URL: http://freshmeat.net/projects/ccze/
2008-03-26 13:45:31 +11:00
# Maintainer: Danny Rawlins, monster dot romster at gmail dot com
2008-03-18 21:10:19 +11:00
# Packager: Vincenzo Colosimo, vico at bicisport dot de
# Depends on: libpcre ncurses
2006-11-14 09:01:22 +10:00
name=ccze
version=0.2.1
2007-03-04 18:21:34 +10:00
release=3
2010-11-20 11:40:23 +11:00
source=(http://ftp.debian.org/debian/pool/main/c/$name/${name}_$version.orig.tar.gz)
2006-11-14 09:01:22 +10:00
build() {
2010-11-20 11:40:23 +11:00
cd $name-$version
2006-11-14 09:01:22 +10:00
2008-03-18 21:10:19 +11:00
# 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
2006-11-14 09:01:22 +10:00
2008-03-18 21:10:19 +11:00
./configure \
--prefix=/usr \
2007-03-04 18:21:34 +10:00
--mandir=/usr/man \
2008-03-18 21:10:19 +11:00
--disable-nls
2006-11-14 09:01:22 +10:00
2008-03-18 21:10:19 +11:00
make
2007-06-07 10:34:05 +10:00
make DESTDIR=$PKG install
2006-11-14 09:01:22 +10:00
}