2010-04-13 21:32:46 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Libdlna < Formula
|
2010-04-13 21:32:46 +00:00
|
|
|
url 'http://libdlna.geexbox.org/releases/libdlna-0.2.3.tar.bz2'
|
|
|
|
homepage 'http://libdlna.geexbox.org/'
|
2010-04-13 21:34:11 +00:00
|
|
|
md5 '2c974f95b711e5fd07f78fc4ebfcca66'
|
2010-04-13 21:32:46 +00:00
|
|
|
|
2010-05-28 03:03:25 +00:00
|
|
|
depends_on 'ffmpeg'
|
|
|
|
|
2011-12-05 17:46:21 +00:00
|
|
|
# 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
|
2010-04-13 21:32:46 +00:00
|
|
|
def patches
|
2011-12-05 17:46:21 +00:00
|
|
|
[
|
|
|
|
"https://gist.github.com/raw/356431/fbddfeee80d9224f6c67886b119fbd813f3c0ffa/libdlna.patch",
|
|
|
|
"https://gist.github.com/raw/1434147/293ec631536bc34a6e2dd49bb0f30c86f02b1107/libdlna023_fix_symbols.patch"
|
|
|
|
]
|
2010-04-13 21:32:46 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def install
|
|
|
|
system "./configure", "--prefix=#{prefix}", "--disable-debug"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|