contrib/ccze/Pkgfile

31 lines
704 B
Plaintext
Raw Normal View History

2006-11-19 22:26:53 +01: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-03-04 09:21:34 +01:00
# Maintainer: James Mills, prologic at shortcircuit dot net dot au
2006-11-19 22:26:53 +01:00
#
# Depends on: libpcre
2006-11-14 00:01:22 +01:00
name=ccze
version=0.2.1
2007-03-04 09:21:34 +01:00
release=3
2006-11-14 00:01:22 +01:00
source=(ftp://bonehunter.rulez.org/pub/$name/stable/$name-$version.tar.gz)
build() {
2007-03-04 09:21:34 +01:00
cd $name-$version
2006-11-14 00:01:22 +01:00
2007-03-04 09:21:34 +01: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 00:01:22 +01:00
2007-03-04 09:21:34 +01:00
./configure \
--prefix=/usr \
--mandir=/usr/man \
--disable-nls
2006-11-14 00:01:22 +01:00
2007-03-04 09:21:34 +01:00
make && make DESTDIR=$PKG install
chown -R root:root $PKG
2006-11-14 00:01:22 +01:00
}