aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJustin Mayer2014-12-20 15:43:02 -0800
committerTim D. Smith2014-12-20 22:50:18 -0500
commit6d89681c33674c75ae72086c63d46fb315802303 (patch)
treeff0c1258db8e13f20434a3237d301d33c879d647 /Library
parentf6b90086273cf015b0e735b0128e4858b5c1e6e1 (diff)
downloadhomebrew-6d89681c33674c75ae72086c63d46fb315802303.tar.bz2
libbpg 0.9.4
Closes #35162. Signed-off-by: Tim D. Smith <git@tim-smith.us>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/libbpg.rb10
1 files changed, 2 insertions, 8 deletions
diff --git a/Library/Formula/libbpg.rb b/Library/Formula/libbpg.rb
index 48c2b0991..5a933dac1 100644
--- a/Library/Formula/libbpg.rb
+++ b/Library/Formula/libbpg.rb
@@ -2,8 +2,8 @@ require "formula"
class Libbpg < Formula
homepage "http://bellard.org/bpg/"
- url "http://bellard.org/bpg/libbpg-0.9.3.tar.gz"
- sha1 "02887f709458d6aca5f608ffc6416b6233465edf"
+ url "http://bellard.org/bpg/libbpg-0.9.4.tar.gz"
+ sha1 "6c1c950c0ff9a051e4f48bf2ff63f73bc859830d"
bottle do
cellar :any
@@ -16,12 +16,6 @@ class Libbpg < Formula
depends_on "jpeg"
def install
- # Following changes are necessary for compilation on OS X. These have been
- # reported to the author and can be removed once incorporated upstream.
- inreplace "libavutil/mem.c" do |s|
- s.gsub! "#include <malloc.h>", "#include <malloc/malloc.h>"
- end
-
bin.mkpath
system "make", "install", "prefix=#{prefix}", "CONFIG_APPLE=y"
end