aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/highlight.rb
blob: 6ec98da981d0535f350cc5316d6757844e9675be (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.14.tar.bz2'
  sha1 '02dd278367e9029baeb396cd6af77f11ceb731c5'

  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! /lua5.1/, "lua"
    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