homebrew-core/Formula/libdv.rb

25 lines
855 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Libdv < Formula
url 'http://downloads.sourceforge.net/libdv/libdv-1.0.0.tar.gz'
homepage 'http://libdv.sourceforge.net'
md5 'f895162161cfa4bb4a94c070a7caa6c7'
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", "--prefix=#{prefix}", "--disable-dependency-tracking",
"--disable-gtktest",
"--disable-gtk",
"--disable-asm",
"--disable-sdltest"
system "make install"
end
2011-03-10 05:11:03 +00:00
end