homebrew-core/Formula/swfmill.rb

15 lines
307 B
Ruby
Raw Normal View History

2009-11-12 17:46:35 +00:00
require 'formula'
class Swfmill <Formula
url 'http://swfmill.org/releases/swfmill-0.3.1.tar.gz'
2009-11-12 17:46:35 +00:00
homepage 'http://swfmill.org'
md5 '63c0b16eab55c385a47afe3ec5b917b9'
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