aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/swfmill.rb
blob: cdc3baa9ef802aec967949095d8b2a7d0bc64487 (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' => :build

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