aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAdam Vandenberg2012-02-09 21:59:44 -0800
committerAdam Vandenberg2012-02-09 21:59:57 -0800
commitca44b493113a5d076f3b72b2a93a44f5bc7732d7 (patch)
tree4515a3363965d41a07a0bc8ccaae3f78dba56124 /Library
parent1141261922da63e2c0e092335a7f97769b00dbce (diff)
downloadhomebrew-ca44b493113a5d076f3b72b2a93a44f5bc7732d7.tar.bz2
swfmill 0.3.2
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/swfmill.rb9
1 files changed, 4 insertions, 5 deletions
diff --git a/Library/Formula/swfmill.rb b/Library/Formula/swfmill.rb
index 70795165f..ac728f5d7 100644
--- a/Library/Formula/swfmill.rb
+++ b/Library/Formula/swfmill.rb
@@ -1,16 +1,15 @@
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'
+ url 'http://swfmill.org/releases/swfmill-0.3.2.tar.gz'
+ md5 'c607f8aba506ec32cc4423446fe6644e'
depends_on 'pkg-config' => :build
def install
system "./configure", "--prefix=#{prefix}"
- system "make install"
+ # Has trouble linking against zlib unless we add it here - @adamv
+ system "make", "LIBS=-lz", "install"
end
end