From a2b19c8490cbfadc618a8bc93c20283511e2cb88 Mon Sep 17 00:00:00 2001 From: Klaus Meyer Date: Thu, 20 Jun 2013 22:01:39 +0200 Subject: ccze 0.2.1 Closes #20636. Signed-off-by: Adam Vandenberg --- Library/Formula/ccze.rb | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 Library/Formula/ccze.rb (limited to 'Library/Formula') diff --git a/Library/Formula/ccze.rb b/Library/Formula/ccze.rb new file mode 100644 index 000000000..6154733b1 --- /dev/null +++ b/Library/Formula/ccze.rb @@ -0,0 +1,41 @@ +require 'formula' + +class Ccze < Formula + homepage 'http://packages.debian.org/wheezy/ccze' + url 'http://ftp.de.debian.org/debian/pool/main/c/ccze/ccze_0.2.1.orig.tar.gz' + sha1 'a265e826be8018cd2f1b13ea1e96e27cc1941d02' + + depends_on 'pcre' + + # Taken from debian + def patches + DATA + end + + def install + system "./configure", "--prefix=#{prefix}", + "--with-builtins=all" + system "make", "install" + # Strange but true: using --mandir above causes the build to fail! + share.install prefix/'man' + end + + test do + system "#{bin}/ccze", "--help" + end +end + +__END__ +diff --git a/src/Makefile.in b/src/Makefile.in +index c6f9892..9b93b65 100644 +--- a/src/Makefile.in ++++ b/src/Makefile.in +@@ -22,7 +22,7 @@ WFLAGS_GCC = -Wshadow -Wpointer-arith -Waggregate-return \ + -Wbad-function-cast -Wsign-compare -Wchar-subscripts \ + -Wcomment -Wformat -Wformat-nonliteral -Wformat-security \ + -Wimplicit -Wmain -Wmissing-braces -Wparentheses \ +- -Wreturn-type -Wswitch -Wmulticharacter \ ++ -Wreturn-type -Wswitch \ + -Wmissing-noreturn -Wmissing-declarations @WFLAGS_3X@ + WFLAGS_ICC = -Wall -wd193,279,810,869,1418,1419 + WFLAGS_3X = -Wsequence-point -Wdiv-by-zero -W -Wunused \ -- cgit v1.2.3