2010-05-21 01:36:28 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Freealut < Formula
|
2010-05-21 01:36:28 +00:00
|
|
|
url 'http://connect.creativelabs.com/openal/Downloads/ALUT/freealut-1.1.0.tar.gz'
|
|
|
|
homepage 'http://connect.creativelabs.com/openal/Documentation/The%20OpenAL%20Utility%20Toolkit.htm'
|
|
|
|
md5 'e089b28a0267faabdb6c079ee173664a'
|
|
|
|
|
2010-10-21 14:54:17 +00:00
|
|
|
# Adds the OpenAL frameworks to the library list so linking succeeds
|
|
|
|
def patches; DATA; end
|
2010-05-21 01:36:28 +00:00
|
|
|
|
2012-02-28 15:39:22 +00:00
|
|
|
if MacOS.xcode_version >= "4.3"
|
|
|
|
# when and if the tarball provides configure, remove autogen.sh and these deps
|
|
|
|
depends_on "automake" => :build
|
|
|
|
depends_on "libtool" => :build
|
|
|
|
end
|
|
|
|
|
2010-05-21 01:36:28 +00:00
|
|
|
def install
|
2010-10-21 14:54:17 +00:00
|
|
|
system "./autogen.sh"
|
|
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}",
|
|
|
|
"--mandir=#{man}"
|
2010-05-21 01:36:28 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
__END__
|
|
|
|
diff --git a/configure.ac b/configure.ac
|
|
|
|
index 2b26d6d..4001db1 100644
|
|
|
|
--- a/configure.ac
|
|
|
|
+++ b/configure.ac
|
|
|
|
@@ -83,7 +83,8 @@ AC_DEFINE([ALUT_BUILD_LIBRARY], [1], [Define to 1 if you want to build the ALUT
|
|
|
|
|
|
|
|
# Checks for libraries. (not perfect yet)
|
|
|
|
AC_SEARCH_LIBS([pthread_self], [pthread])
|
|
|
|
-AC_SEARCH_LIBS([alGetError], [openal32 openal])
|
|
|
|
+# Use Mac OS X frameworks
|
|
|
|
+LIBS="$LIBS -framework IOKit -framework OpenAL"
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
# Checks for header files.
|