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

class Ekhtml < Formula
  homepage 'http://ekhtml.sourceforge.net/'
  url 'http://downloads.sourceforge.net/project/ekhtml/ekhtml/0.3.2/ekhtml-0.3.2.tar.gz'
  sha1 'd4e6c25964f7e110073f646950dc307e84d61f1b'

  def install
    ENV.j1
    system "./configure", "--disable-dependency-tracking",
                          "--prefix=#{prefix}"
    system "make", "install"
  end
end