blob: bc9f38cc05eef6ddab12ba743f2ce843418e395b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
require 'formula'
class Swftools <Formula
url 'http://www.swftools.org/swftools-0.9.0.tar.gz'
homepage 'http://www.swftools.com'
md5 '946e7c692301a332745d29140bc74e55'
depends_on 'jpeg'
def install
ENV.minimal_optimization
system "./configure", "--prefix=#{prefix}"
system "make"
system "make install"
end
end
|