63 lines
2.1 KiB
Ruby
63 lines
2.1 KiB
Ruby
class Pmdmini < Formula
|
|
desc "Plays music in PC-88/98 PMD chiptune format"
|
|
homepage "https://github.com/mistydemeo/pmdmini"
|
|
url "https://github.com/mistydemeo/pmdmini/archive/v1.0.0.tar.gz"
|
|
sha256 "526cb2be1a7e32be9782908cbaeae89b3aca20cad8e42f238916ce9b6d17679c"
|
|
|
|
bottle do
|
|
cellar :any
|
|
rebuild 1
|
|
sha256 "b5f11fd04a2747d1c27e84003f9ee42aaf6a2f1dce34faf146a8531fa1d7831c" => :sierra
|
|
sha256 "0d0d98c981cc98801314be58685ef4019b2a0a73a2ff98e7353e4f1a311bd354" => :el_capitan
|
|
sha256 "f7faea3656b8ee02a2a51d8698f9906f9092ba9af2a884e8125de1840c9a00c0" => :yosemite
|
|
sha256 "0c59e61c2789433240c34f51e7e643559c3af24b9e588fe89140bbc5cdbe9d5e" => :mavericks
|
|
end
|
|
|
|
option "with-lib-only", "Do not build commandline player"
|
|
deprecated_option "lib-only" => "with-lib-only"
|
|
|
|
depends_on "sdl" if build.without? "lib-only"
|
|
|
|
resource "test_song" do
|
|
url "https://ftp.modland.com/pub/modules/PMD/Shiori%20Ueno/His%20Name%20Is%20Diamond/dd06.m"
|
|
sha256 "36be8cfbb1d3556554447c0f77a02a319a88d8c7a47f9b7a3578d4a21ac85510"
|
|
end
|
|
|
|
def install
|
|
# Specify Homebrew's cc
|
|
inreplace "mak/general.mak", "gcc", ENV.cc
|
|
if build.with? "lib-only"
|
|
system "make", "-f", "Makefile.lib"
|
|
else
|
|
system "make"
|
|
end
|
|
|
|
# Makefile doesn't build a dylib
|
|
system "#{ENV.cc} -dynamiclib -install_name #{lib}/libpmdmini.dylib -o libpmdmini.dylib -undefined dynamic_lookup obj/*.o"
|
|
|
|
bin.install "pmdplay" if build.without? "lib-only"
|
|
lib.install "libpmdmini.a", "libpmdmini.dylib"
|
|
(include+"libpmdmini").install Dir["src/*.h"]
|
|
(include+"libpmdmini/pmdwin").install Dir["src/pmdwin/*.h"]
|
|
end
|
|
|
|
test do
|
|
resource("test_song").stage testpath
|
|
(testpath/"pmdtest.c").write <<-EOS.undent
|
|
#include <stdio.h>
|
|
#include "libpmdmini/pmdmini.h"
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
char title[1024];
|
|
pmd_init();
|
|
pmd_play(argv[1], argv[2]);
|
|
pmd_get_title(title);
|
|
printf("%s\\n", title);
|
|
}
|
|
EOS
|
|
system ENV.cc, "pmdtest.c", "-lpmdmini", "-o", "pmdtest"
|
|
result = `#{testpath}/pmdtest #{testpath}/dd06.m #{testpath}`.chomp
|
|
assert_equal "mus #06", result
|
|
end
|
|
end
|