homebrew-core/Formula/swfmill.rb

17 lines
409 B
Ruby
Raw Normal View History

2009-11-12 17:46:35 +00:00
require 'formula'
2011-03-10 05:11:03 +00:00
class Swfmill < Formula
2011-03-13 17:26:57 +00:00
# Staying on 3.0 until this 3.1 issue is fixed:
# https://bugs.launchpad.net/swfmill/+bug/611403
url 'http://swfmill.org/releases/swfmill-0.3.0.tar.gz'
2009-11-12 17:46:35 +00:00
homepage 'http://swfmill.org'
2011-03-13 17:26:57 +00:00
md5 'b7850211cf683aa7a1c62324b56e3216'
2009-11-12 17:46:35 +00:00
depends_on 'pkg-config' => :build
2009-11-12 17:46:35 +00:00
def install
system "./configure", "--prefix=#{prefix}"
system "make install"
end
end