diff options
| author | Zifei Tong | 2010-09-22 16:49:18 +0800 |
|---|---|---|
| committer | Adam Vandenberg | 2010-10-03 20:45:59 -0700 |
| commit | b59a6a338318d2d2a431aa2673b6d3e3160eab7e (patch) | |
| tree | 9a1f89b37af74a3bdfc5bce9650898ed9ca07448 /Library | |
| parent | 93dc8725c52458b29a1716705abdc008c26542ab (diff) | |
| download | homebrew-b59a6a338318d2d2a431aa2673b6d3e3160eab7e.tar.bz2 | |
add source-highlight formula
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/source-highlight.rb | 15 |
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 |
