class Alure < Formula desc "Manage common tasks with OpenAL applications" homepage "http://kcat.strangesoft.net/alure.html" url "http://kcat.strangesoft.net/alure-releases/alure-1.2.tar.bz2" sha256 "465e6adae68927be3a023903764662d64404e40c4c152d160e3a8838b1d70f71" bottle do cellar :any sha256 "5baea30dcf15d45e2ea3111c3ed52fd30e6d0c38c7ca5b38b0a8c22ec1861f80" => :high_sierra sha256 "2f13ff3eac6fa8d84047502e9cfc1659740c0c72fe2c529cfcfd7610d9b6ddfa" => :sierra sha256 "271fbc61bdd430e8bc5f6624a2944bd3d0e2ffa8787f1899c3ae98b768fd229d" => :el_capitan sha256 "79205290fb22706d0b5d855ad4067f08dbdaf3f93274eef7e900cbe7d4fd841f" => :yosemite sha256 "8c388226c9c1544308895f9b8e6b5ff882e64431bfac00b342d13e045bb6e51a" => :mavericks end depends_on "pkg-config" => :build depends_on "cmake" => :build depends_on "flac" => :optional depends_on "fluid-synth" => :optional depends_on "libogg" => :optional depends_on "libsndfile" => :optional depends_on "libvorbis" => :optional depends_on "mpg123" => :optional # Fix missing unistd include # Reported by email to author on 2017-08-25 if MacOS.version >= :high_sierra patch do url "https://raw.githubusercontent.com/Homebrew/formula-patches/eed63e836e/alure/unistd.patch" sha256 "7852a7a365f518b12a1afd763a6a80ece88ac7aeea3c9023aa6c1fe46ac5a1ae" end end def install # fix a broken include flags line, which fixes a build error. # Not reported upstream. # https://github.com/Homebrew/legacy-homebrew/pull/6368 if build.with? "libvorbis" inreplace "CMakeLists.txt", "${VORBISFILE_CFLAGS}", Utils.popen_read("pkg-config --cflags vorbisfile").chomp end cd "build" do system "cmake", "..", *std_cmake_args system "make", "install" end end test do system bin/"alureplay", test_fixtures("test.wav") end end