aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorAdam Vandenberg2014-02-06 22:57:01 -0800
committerAdam Vandenberg2014-02-06 22:57:01 -0800
commit6e2873f6ede1be64bfd9949f423f97f1c0fd3557 (patch)
tree94447df77925692891e0f24ded98722139d46ea0 /Library/Formula
parent4edb12e98143b38b13fceeeda2b9e51a88ad268c (diff)
downloadhomebrew-6e2873f6ede1be64bfd9949f423f97f1c0fd3557.tar.bz2
Move colormake to headonly
Closes #25226.
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/colormake.rb27
1 files changed, 0 insertions, 27 deletions
diff --git a/Library/Formula/colormake.rb b/Library/Formula/colormake.rb
deleted file mode 100644
index ff7be16e7..000000000
--- a/Library/Formula/colormake.rb
+++ /dev/null
@@ -1,27 +0,0 @@
-require 'formula'
-
-class Colormake < Formula
- homepage 'http://bre.klaki.net/programs/colormake/'
- url 'http://bre.klaki.net/programs/colormake/colormake-0.9.tar.gz'
- sha1 '6c5ab4be23d60ec79ed4c43cbeb142bfd4a4e626'
-
- def install
- libexec.install 'colormake.pl'
-
- # The following two scripts are not the ones shipped with colormake,
- # but heavily based on the ones used by Debian.
- (bin+'colormake').write <<-EOS.undent
- #!/bin/sh
- /usr/bin/make \"$@\" 2>&1 | #{libexec}/colormake.pl
- exit ${PIPESTATUS[0]}
- EOS
-
- (bin+'clmake').write <<-EOS.undent
- #!/bin/sh
- SIZE=`/bin/stty size`
- [ -z "${CLMAKE_OPTS}" ] && CLMAKE_OPTS='-r -pError'
- /usr/bin/make \"$@\" 2>&1 | #{libexec}/colormake.pl $SIZE | /usr/bin/less ${CLMAKE_OPTS}
- exit ${PIPESTATUS[0]}
- EOS
- end
-end