homebrew-core/Formula/libdv.rb
Jaime Marquínez Ferrándiz 74c83fa9f6 Batch convert http download urls from SourceForge to https
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2014-03-02 09:16:53 -08:00

25 lines
891 B
Ruby

require 'formula'
class Libdv < Formula
homepage 'http://libdv.sourceforge.net'
url 'https://downloads.sourceforge.net/libdv/libdv-1.0.0.tar.gz'
sha1 '2e5ba0e95f665d60e72cbebcf1c4989e0d6c92c8'
depends_on 'popt'
def install
# This fixes an undefined symbol error on compile.
# See the port file for libdv. http://libdv.darwinports.com/
# This flag is the preferred method over what macports uses.
# See the apple docs: http://cl.ly/2HeF bottom of the "Finding Imported Symbols" section
ENV.append "LDFLAGS", "-undefined dynamic_lookup"
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--disable-gtktest",
"--disable-gtk",
"--disable-asm",
"--disable-sdltest"
system "make install"
end
end