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

class Swfmill <Formula
  url 'http://swfmill.org/releases/swfmill-0.2.12.tar.gz'
  homepage 'http://swfmill.org'
  md5 '88a634cad4d8d025c84c6e8916a8b1c4'

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