18 lines
420 B
Ruby
18 lines
420 B
Ruby
|
require 'formula'
|
||
|
|
||
|
class Libdlna <Formula
|
||
|
url 'http://libdlna.geexbox.org/releases/libdlna-0.2.3.tar.bz2'
|
||
|
homepage 'http://libdlna.geexbox.org/'
|
||
|
md5 ''
|
||
|
|
||
|
def patches
|
||
|
# fixes ffmpeg locations
|
||
|
"http://gist.github.com/raw/356431/fbddfeee80d9224f6c67886b119fbd813f3c0ffa/libdlna.patch"
|
||
|
end
|
||
|
|
||
|
def install
|
||
|
system "./configure", "--prefix=#{prefix}", "--disable-debug"
|
||
|
system "make install"
|
||
|
end
|
||
|
end
|