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

class Etl < Formula
  homepage 'http://synfig.org'
  url 'http://downloads.sourceforge.net/project/synfig/releases/0.64.1/source/ETL-0.04.17.tar.gz'
  sha1 '2ab2957140deaad90232533461513c5d425007bb'

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