blob: f489d047b6ec59a9e5f1fbd7a2f68b91e0e0a25b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
require 'formula'
class Highlight < Formula
homepage 'http://www.andre-simon.de/doku/highlight/en/highlight.html'
url 'http://www.andre-simon.de/zip/highlight-3.9.tar.bz2'
sha1 'dd5f7ada72e6e6ee0c3477ba0347a1bce9227ddf'
depends_on 'boost'
depends_on 'lua'
def install
inreplace "src/Makefile" do |s|
s.change_make_var! "CXX", ENV.cxx
s.gsub! /^(CFLAGS):=.*$/, "\\1 = #{ENV.cppflags}"
s.gsub! /^(LUA_LIBS)=(.*)$/, "\\1 = #{ENV.ldflags} \\2"
end
conf_dir = etc+'highlight/' # highlight needs a final / for conf_dir
system "make", "PREFIX=#{prefix}", "conf_dir=#{conf_dir}"
system "make", "PREFIX=#{prefix}", "conf_dir=#{conf_dir}", "install"
end
end
|