contrib/ccze/Pkgfile

32 lines
741 B
Plaintext
Raw Normal View History

2006-11-20 07:26:53 +10:00
# Description: A log colorizer written in C with plugin support.
# URL: http://bonehunter.rulez.org/software/ccze/
# Packager: Vincenzo Colosimo <vico@bicisport.de>
2007-06-07 10:34:05 +10:00
# Maintainer: ames Mills prologic at shortcircuit dot net dot au
2006-11-20 07:26:53 +10:00
#
# Depends on: libpcre
2006-11-14 09:01:22 +10:00
name=ccze
version=0.2.1
2007-03-04 18:21:34 +10:00
release=3
2007-06-07 10:34:05 +10:00
source=(http://ftp.debian.org/debian/pool/main/c/ccze/ccze_$version.orig.tar.gz)
2006-11-14 09:01:22 +10:00
build() {
2007-06-07 10:34:05 +10:00
cd $name-$version
2006-11-14 09:01:22 +10:00
2007-06-07 10:34:05 +10:00
# GCC 4.x fixes
sed -e 's/-Wswitch -Wmulticharacter/-Wswitch/' \
-i src/Makefile.in
sed -e '/AC_CHECK_TYPE(error_t, int)/d' \
-i configure.ac
autoconf
2006-11-14 09:01:22 +10:00
2007-06-07 10:34:05 +10:00
./configure \
--prefix=/usr \
2007-03-04 18:21:34 +10:00
--mandir=/usr/man \
2007-06-07 10:34:05 +10:00
--disable-nls
2006-11-14 09:01:22 +10:00
2007-06-07 10:34:05 +10:00
make
make DESTDIR=$PKG install
chown -R root:root $PKG
2006-11-14 09:01:22 +10:00
}