aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/highlight.rb
blob: b1d04f9bdab4f93ecd477c95ec7d4e222331ae21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'formula'

class Highlight <Formula
  url 'http://www.andre-simon.de/zip/highlight-2.16.tar.bz2'
  homepage 'http://www.andre-simon.de/doku/highlight/en/highlight.html'
  sha1 'b5fed14bb1a973fe134dd2133766bb86fdc7494e'

  def install
    conf = etc+'highlight/'
    system "make", "PREFIX=#{prefix}", "conf_dir=#{conf}"
    system "make", "PREFIX=#{prefix}", "conf_dir=#{conf}", "install"
  end
end