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

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

  depends_on 'pkg-config'

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