homebrew-core/Formula/etl.rb

14 lines
395 B
Ruby
Raw Normal View History

2015-01-02 01:03:12 +00:00
require "formula"
2011-03-10 05:11:03 +00:00
class Etl < Formula
2015-01-02 01:03:12 +00:00
homepage "http://synfig.org"
url "https://downloads.sourceforge.net/project/synfig/releases/0.64.3/source/ETL-0.04.17.tar.gz"
sha1 "cb7e83534274ef53ce841e8924f92048593e0cea"
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end