60 lines
2.8 KiB
Ruby
60 lines
2.8 KiB
Ruby
class Freealut < Formula
|
|
desc "Implementation of OpenAL's ALUT standard"
|
|
homepage "https://github.com/vancegroup/freealut"
|
|
url "https://deb.debian.org/debian/pool/main/f/freealut/freealut_1.1.0.orig.tar.gz"
|
|
sha256 "60d1ea8779471bb851b89b49ce44eecb78e46265be1a6e9320a28b100c8df44f"
|
|
license "LGPL-2.0"
|
|
|
|
bottle do
|
|
sha256 cellar: :any, arm64_ventura: "7d9a63d859ffb514a2e4a7518d18bcbc7b71fb79c1580e00fa71c2107d794be6"
|
|
sha256 cellar: :any, arm64_monterey: "b8def26cf41acf2dc5d3e349ec3e8429df7cc8c22c09f6efc237796653d01561"
|
|
sha256 cellar: :any, arm64_big_sur: "3cdedc8bdb746d9b619372b514e021eb40f51a83f01db883167d55322cb5286a"
|
|
sha256 cellar: :any, ventura: "e538e0e346fe29aadb9df1856ef2291cf3c897edd1d6aa79ba1ad5218262c895"
|
|
sha256 cellar: :any, monterey: "8b5449831c37f8dac468aaf8e2a4ccb8ea17acbfebf0a4a831bb864d7d1d5834"
|
|
sha256 cellar: :any, big_sur: "16375ee0d022401f8d83ea01540d088ffc90e5661c10370b4157e13c617061fb"
|
|
sha256 cellar: :any, catalina: "7b37a28c1edf58222ec10227bfbc0129cdd0afe66167c232fc62527bf89333c3"
|
|
sha256 cellar: :any, mojave: "e7a2418c016c5636386fd3a2aa1af8b611beefd4aed0d7eb22b152b654a5cc4d"
|
|
sha256 cellar: :any, high_sierra: "90bb9d9a0c0eb6ded2dd5f5c6fb566a2fd3835c32cab71d3c53efcfd82b7059e"
|
|
sha256 cellar: :any, sierra: "5b592930278516c32e0ecdbf5e244abc4f18b2f766242af145ea0def25df3c99"
|
|
sha256 cellar: :any, el_capitan: "301e3825367cee8b41747fae0b3495e94b09668d93980032f5fdb92d1c597b62"
|
|
sha256 cellar: :any_skip_relocation, x86_64_linux: "05ed720d9817268e8941fba68a2d52e685562119fe2d79eba3f6ec107864d191"
|
|
end
|
|
|
|
depends_on "autoconf" => :build
|
|
depends_on "automake" => :build
|
|
depends_on "libtool" => :build
|
|
|
|
# Adds the OpenAL frameworks to the library list so linking succeeds
|
|
on_macos do
|
|
patch :DATA
|
|
end
|
|
|
|
on_linux do
|
|
depends_on "openal-soft"
|
|
end
|
|
|
|
def install
|
|
system "./autogen.sh"
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}",
|
|
"--mandir=#{man}"
|
|
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.
|