homebrew-core/Formula/highlight.rb
Paul Capestany c441c698c5 highlight 3.18
Closes Homebrew/homebrew#29267.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2014-05-14 17:35:37 -07:00

22 lines
655 B
Ruby

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.18.tar.bz2'
sha1 '985d0a3c707e3251fe50ffff66e11a8563777202'
depends_on 'pkg-config' => :build
depends_on 'boost'
depends_on 'lua'
def install
inreplace "src/makefile" do |s|
s.change_make_var! "CXX", ENV.cxx
s.gsub! /-DUSE_LUA52/, ""
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