blob: 12985f00c28a35f922ea90c35d4bc3a8747fa566 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
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}",
"--with-boost=#{HOMEBREW_PREFIX}"
system "make install"
end
end
|