24 lines
816 B
Ruby
24 lines
816 B
Ruby
require 'formula'
|
|
|
|
class Libdca < Formula
|
|
homepage 'http://www.videolan.org/developers/libdca.html'
|
|
url 'http://download.videolan.org/pub/videolan/libdca/0.0.5/libdca-0.0.5.tar.bz2'
|
|
sha1 '3fa5188eaaa2fc83fb9c4196f6695a23cb17f3bc'
|
|
|
|
bottle do
|
|
sha1 "3d21b7c01673aeff88a00e4986f069311e021e7e" => :yosemite
|
|
sha1 "cdade946152a659fa3bcd9066732822a11905d17" => :mavericks
|
|
sha1 "e3398adba7ac2e06fcc487eed2f442e7b831d8d1" => :mountain_lion
|
|
end
|
|
|
|
def install
|
|
# Fixes "duplicate symbol ___sputc" error when building with clang
|
|
# https://github.com/Homebrew/homebrew/issues/31456
|
|
ENV.append_to_cflags "-std=gnu89"
|
|
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}"
|
|
system "make"
|
|
system "make install"
|
|
end
|
|
end
|