add source-highlight formula

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Zifei Tong 2010-09-22 16:49:18 +08:00 committed by Adam Vandenberg
parent ee2852ae39
commit d1048d7127
1 changed files with 15 additions and 0 deletions

View File

@ -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