diff options
| author | nibbles 2bits | 2012-08-08 08:38:11 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2012-08-08 21:06:52 -0700 |
| commit | ea14928d80d0800623fd9345ed5cfa86ce2ffa90 (patch) | |
| tree | 879e7db5976c111171c71619773025711c103deb /Library/Formula/libdvbpsi.rb | |
| parent | fbd3e67283e0e4453256709bee28dd740f83629c (diff) | |
| download | homebrew-ea14928d80d0800623fd9345ed5cfa86ce2ffa90.tar.bz2 | |
libdvbpsi 0.2.2
Upgrade to version 0.2.2.
Add an `inreplace` to remove `-06` that `configure` tries to add
to the `CFLAGS`. Tested on ML with XCode-4.4.1.
Closes #14054.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/libdvbpsi.rb')
| -rw-r--r-- | Library/Formula/libdvbpsi.rb | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Library/Formula/libdvbpsi.rb b/Library/Formula/libdvbpsi.rb index 23cad7a78..b0e6db539 100644 --- a/Library/Formula/libdvbpsi.rb +++ b/Library/Formula/libdvbpsi.rb @@ -1,11 +1,13 @@ require 'formula' class Libdvbpsi < Formula - url 'http://download.videolan.org/pub/libdvbpsi/0.1.7/libdvbpsi-0.1.7.tar.bz2' - md5 'af419575719e356b908b0c6946499052' homepage 'http://www.videolan.org/developers/libdvbpsi.html' + url 'http://download.videolan.org/pub/libdvbpsi/0.2.2/libdvbpsi-0.2.2.tar.bz2' + sha1 '562d46ce256a678309f7c39be8cf31eea4bf6757' def install + # Clang doesn't recognize O6. Just remove it. Fixes a build error. + inreplace 'configure', 'CFLAGS="${CFLAGS} -O6"', 'CFLAGS="${CFLAGS}"' system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking", "--enable-release" system "make install" end |
