blob: a6a3adbc771e82857726930f4f669b2308365b48 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
require "formula"
class Libmikmod < Formula
homepage "http://mikmod.shlomifish.org"
url "https://downloads.sourceforge.net/project/mikmod/libmikmod/3.3.7/libmikmod-3.3.7.tar.gz"
sha256 "4cf41040a9af99cb960580210ba900c0a519f73ab97b503c780e82428b9bd9a2"
bottle do
cellar :any
revision 1
sha1 "7c2b02e0af8bd35ef16963234062f386a6afbaac" => :yosemite
sha1 "d3257de6616b399d3009f709cfb25e4f0b872025" => :mavericks
sha1 "9384df42ef0e74aa4f077d8a85fc028f4ec9092a" => :mountain_lion
end
option "with-debug", "Enable debugging symbols"
def install
ENV.O2 if build.with? "debug"
# 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.with? "debug"
mkdir "macbuild" do
system "../configure", *args
system "make install"
end
end
test do
system "#{bin}/libmikmod-config", "--version"
end
end
|