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

class Swfmill < Formula
  # 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'
  homepage 'http://swfmill.org'
  md5 'b7850211cf683aa7a1c62324b56e3216'

  depends_on 'pkg-config' => :build

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