aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/ecl.rb
blob: d2b0be6e443f20a9e0cb388d1481c39d27e239b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
require 'formula'

class Ecl < Formula
  url 'http://downloads.sourceforge.net/project/ecls/ecls/11.1/ecl-11.1.1.tar.gz'
  homepage 'http://ecls.sourceforge.net/'
  md5 '6963cfa00e1c6d4a2123fd62100b02e6'

  # doesn't start otherwise
  skip_clean 'bin'
  skip_clean 'lib'

  def install
    ENV.deparallelize
    system "./configure", "--prefix=#{prefix}", "--enable-unicode"
    system "make"
    system "make install"
  end
end