homebrew-core/Formula/libmikmod.rb

33 lines
811 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Libmikmod < Formula
homepage 'http://mikmod.shlomifish.org'
url 'http://mikmod.shlomifish.org/files/libmikmod-3.2.0.tar.gz'
sha256 '734c8490bbf9b0c587920b92414dcfa3c2267838a0cdf698d5f1fb6bba8f661e'
option 'with-debug', 'Enable debugging symbols'
2012-03-17 19:27:45 +00:00
def install
if build.include? 'with-debug'
(ENV.compiler == :clang) ? ENV.Og : ENV.O2
end
# OSX has CoreAudio, but ALSA is not for this OS nor is SAM9407 nor ULTRA.
args = %W[
--prefix=#{prefix}
--disable-alsa
--disable-sam9407
--disable-ultra
]
args << '--with-debug' if build.include? 'with-debug'
2012-02-22 04:48:36 +00:00
mkdir 'macbuild' do
system "../configure", *args
system "make install"
end
end
def test
system "#{bin}/libmikmod-config", "--version"
end
end