73 lines
2.7 KiB
Ruby
73 lines
2.7 KiB
Ruby
class Mdxmini < Formula
|
|
desc "Plays music in X68000 MDX chiptune format"
|
|
homepage "https://clogging.web.fc2.com/psp/"
|
|
url "https://github.com/mistydemeo/mdxmini/archive/v1.0.0.tar.gz"
|
|
sha256 "5a407203f35d873c3cd5977213b0c33a1ce283d6b14483e9d434de79b05ca4e2"
|
|
|
|
bottle do
|
|
cellar :any
|
|
rebuild 1
|
|
sha256 "04b985db291b09f8f1c4a57e522700f9c67eadcd1074faae78ab0e2ff268d9da" => :catalina
|
|
sha256 "e93281dc0c64642e33763f0dc2a4cfa0a6da0dd4739222b0411e54913435ee27" => :mojave
|
|
sha256 "5bf36e82084146ab4604b4746bcf6634cfe4268f2044712e4d13519b21ab5165" => :high_sierra
|
|
sha256 "8e0daf3d508dad59074c567b8c8e60bd88c8026b7dfe1305e4e9c50ec5d8fbbd" => :sierra
|
|
sha256 "d20b94107c25833096401be6336544f283e6956758d4238e207e6a4e34fa5fdf" => :el_capitan
|
|
sha256 "55cf6b84d9a0e649e25db7626db954a47bf1061afd20a959972470b6e5cc9fa2" => :yosemite
|
|
sha256 "d08a617e3a8791b9e5dc93426f3d471408550a4a0bab85e33a726ccdcdcb683c" => :mavericks
|
|
end
|
|
|
|
depends_on "sdl"
|
|
|
|
resource "test_song" do
|
|
url "https://ftp.modland.com/pub/modules/MDX/-%20unknown/Popful%20Mail/pop-00.mdx"
|
|
sha256 "86f21fbbaf93eb60e79fa07c759b906a782afe4e1db5c7e77a1640e6bf63fd14"
|
|
end
|
|
|
|
def install
|
|
# Specify Homebrew's cc
|
|
inreplace "mak/general.mak", "gcc", ENV.cc
|
|
system "make"
|
|
|
|
# Makefile doesn't build a dylib
|
|
system ENV.cc, "-dynamiclib", "-install_name", "#{lib}/libmdxmini.dylib",
|
|
"-o", "libmdxmini.dylib", "-undefined", "dynamic_lookup",
|
|
*Dir["obj/*"]
|
|
|
|
bin.install "mdxplay"
|
|
lib.install "libmdxmini.dylib"
|
|
(include/"libmdxmini").install Dir["src/*.h"]
|
|
end
|
|
|
|
test do
|
|
resource("test_song").stage testpath
|
|
(testpath/"mdxtest.c").write <<~EOS
|
|
#include <stdio.h>
|
|
#include "libmdxmini/mdxmini.h"
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
t_mdxmini mdx;
|
|
char title[100];
|
|
mdx_open(&mdx, argv[1], argv[2]);
|
|
mdx_get_title(&mdx, title);
|
|
printf("%s\\n", title);
|
|
}
|
|
EOS
|
|
system ENV.cc, "mdxtest.c", "-L#{lib}", "-lmdxmini", "-o", "mdxtest"
|
|
|
|
result = shell_output("#{testpath}/mdxtest #{testpath}/pop-00.mdx #{testpath}").chomp
|
|
result.force_encoding("ascii-8bit") if result.respond_to? :force_encoding
|
|
|
|
# Song title is in Shift-JIS
|
|
# Trailing whitespace is intentional & shouldn't be removed.
|
|
l1 = "\x82\xDB\x82\xC1\x82\xD5\x82\xE9\x83\x81\x83C\x83\x8B "
|
|
l2 = "\x83o\x83b\x83N\x83A\x83b\x83v\x8D\xEC\x90\xAC "
|
|
expected = <<~EOS
|
|
#{l1}
|
|
#{l2}
|
|
(C)Falcom 1992 cv.\x82o\x82h. ass.\x82s\x82`\x82o\x81{
|
|
EOS
|
|
expected.force_encoding("ascii-8bit") if result.respond_to? :force_encoding
|
|
assert_equal expected.delete!("\n"), result
|
|
end
|
|
end
|