diff options
| author | rogeriopvl | 2011-12-05 17:46:21 +0000 |
|---|---|---|
| committer | Adam Vandenberg | 2012-01-22 13:59:10 -0800 |
| commit | 1150e449e2c98180ec6e8792437f0c005c3cd8da (patch) | |
| tree | 4554bf96acd30dce208342afbe3617fb79b966d7 /Library/Formula/libdlna.rb | |
| parent | 03a4f011b2c625537935d62c20c6c7128711fe51 (diff) | |
| download | homebrew-1150e449e2c98180ec6e8792437f0c005c3cd8da.tar.bz2 | |
libdlna: fix for newer libavformat versions.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/libdlna.rb')
| -rw-r--r-- | Library/Formula/libdlna.rb | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/Library/Formula/libdlna.rb b/Library/Formula/libdlna.rb index d18c6abf2..d6ea7eee6 100644 --- a/Library/Formula/libdlna.rb +++ b/Library/Formula/libdlna.rb @@ -7,9 +7,14 @@ class Libdlna < Formula depends_on 'ffmpeg' + # Patches exist in the gentoo repository, but since the project isn't under active + # development they may never get pulled officially. + # fixes ffmpeg locations & missing symbols for newer versions of libavformat def patches - # fixes ffmpeg locations - "https://gist.github.com/raw/356431/fbddfeee80d9224f6c67886b119fbd813f3c0ffa/libdlna.patch" + [ + "https://gist.github.com/raw/356431/fbddfeee80d9224f6c67886b119fbd813f3c0ffa/libdlna.patch", + "https://gist.github.com/raw/1434147/293ec631536bc34a6e2dd49bb0f30c86f02b1107/libdlna023_fix_symbols.patch" + ] end def install |
