aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/source-highlight.rb
diff options
context:
space:
mode:
authorZifei Tong2010-09-22 16:49:18 +0800
committerAdam Vandenberg2010-10-03 20:45:59 -0700
commitb59a6a338318d2d2a431aa2673b6d3e3160eab7e (patch)
tree9a1f89b37af74a3bdfc5bce9650898ed9ca07448 /Library/Formula/source-highlight.rb
parent93dc8725c52458b29a1716705abdc008c26542ab (diff)
downloadhomebrew-b59a6a338318d2d2a431aa2673b6d3e3160eab7e.tar.bz2
add source-highlight formula
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/source-highlight.rb')
-rw-r--r--Library/Formula/source-highlight.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/Library/Formula/source-highlight.rb b/Library/Formula/source-highlight.rb
new file mode 100644
index 000000000..ff855ecb4
--- /dev/null
+++ b/Library/Formula/source-highlight.rb
@@ -0,0 +1,15 @@
+require 'formula'
+
+class SourceHighlight <Formula
+ url 'http://ftp.gnu.org/gnu/src-highlite/source-highlight-3.1.4.tar.gz'
+ homepage 'http://www.gnu.org/software/src-highlite/'
+ md5 'becf8292b84ece6b532b0f0c92b530ee'
+
+ depends_on 'boost'
+
+ def install
+ system "./configure", "--disable-dependency-tracking",
+ "--prefix=#{prefix}"
+ system "make install"
+ end
+end