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

class Etl < Formula
  url 'http://downloads.sourceforge.net/project/synfig/ETL/0.04.14/ETL-0.04.14.tar.gz'
  homepage 'http://synfig.org'
  md5 '7cb91905cbe07af327340aeba2226c06'

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