Add recipe for colormake.

This commit is contained in:
Adrien Destugues
2015-11-01 09:48:08 +01:00
parent f23f463612
commit d0de2b636c

View File

@@ -0,0 +1,41 @@
SUMMARY="Wrapper around make to colorize the output"
DESCRIPTION="This is a simple wrapper for making the output from make easier to read (more \
colorful), and errors easier to find in messy compilations. It was inspired by Micheal T. \
Babcock's excellent logcolorize program."
REVISION="1"
ARCHITECTURES="any"
SOURCE_URI="https://github.com/pagekite/Colormake/archive/0.9.20140503.tar.gz"
CHECKSUM_SHA256="a3f9fae9a455ac96be1cce0371b28bda33a9af73b06fa8e4329aa2f693d68d22"
SOURCE_DIR="Colormake-0.9.20140503"
HOMEPAGE="http://bre.klaki.net/programs/colormake/"
LICENSE="GNU GPL v2"
COPYRIGHT="2012-2014 Bjarni R. Einarsson"
PROVIDES="
colormake = $portVersion
cmd:colormake
cmd:colormake.pl
cmd:colormake_short
cmd:clmake
cmd:clmake_short
"
REQUIRES="
cmd:perl
"
PATCH()
{
sed -i -e "s!/usr/bin/perl!/bin/perl!" colormake.pl
}
BUILD()
{
true;
}
INSTALL()
{
mkdir $binDir
cp -fa colormake.pl colormake colormake-short clmake clmake-short $binDir
}