blob: 0518faad90f393568985037edac4c3981279bdd1 (
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.3.1.tar.gz'
homepage 'http://swfmill.org'
md5 '63c0b16eab55c385a47afe3ec5b917b9'
depends_on 'pkg-config' => :build
def install
system "./configure", "--prefix=#{prefix}"
system "make install"
end
end
|