47 lines
1.8 KiB
Ruby
47 lines
1.8 KiB
Ruby
class Np2 < Formula
|
|
desc "Neko Project 2: PC-9801 emulator"
|
|
homepage "http://www.yui.ne.jp/np2/"
|
|
url "http://amethyst.yui.ne.jp/svn/pc98/np2/tags/VER_0_86/", :using => :svn, :revision => "2606"
|
|
head "http://amethyst.yui.ne.jp/svn/pc98/np2/trunk/", :using => :svn
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha256 "78341257a8c7addbcacb8784ec08fce32e29fa3baf362fe42566d21bf38d0ee1" => :el_capitan
|
|
sha256 "5fa9209b5c2541d6df94a4357dea87d2c84d263a25a7f1aa814282419d9d50ba" => :yosemite
|
|
sha256 "c3a1324b9143ed2fcaa1bbf24816c66810f47ab1e78f676da27fc9af4ccca051" => :mavericks
|
|
end
|
|
|
|
depends_on :xcode => :build
|
|
depends_on "sdl2"
|
|
depends_on "sdl2_ttf"
|
|
|
|
def install
|
|
sdl2 = Formula["sdl2"]
|
|
sdl2_ttf = Formula["sdl2_ttf"]
|
|
|
|
cd "sdl2/MacOSX" do
|
|
# Use brewed library paths
|
|
inreplace "np2sdl2.xcodeproj/project.pbxproj" do |s|
|
|
s.gsub! "BAF84E4B195AA35E00183062", "//BAF84E4B195AA35E00183062"
|
|
s.gsub! "HEADER_SEARCH_PATHS = (", "LIBRARY_SEARCH_PATHS = (\"$(inherited)\", #{sdl2.lib}, #{sdl2_ttf.lib}); HEADER_SEARCH_PATHS = (#{sdl2.include}/SDL2, #{sdl2.include}, #{sdl2_ttf.include},"
|
|
s.gsub! "buildSettings = {", 'buildSettings ={ OTHER_LDFLAGS = "-lSDL2 -lSDL2_ttf";'
|
|
end
|
|
# Force to use Japanese TTF font
|
|
inreplace "np2sdl2/compiler.h", "#define RESOURCE_US", ""
|
|
# Always use current working directory
|
|
inreplace "np2sdl2/main.m", "[pstrBundlePath UTF8String]", '"./"'
|
|
|
|
xcodebuild "SYMROOT=build"
|
|
bin.install "build/Release/np2sdl2.app/Contents/MacOS/np2sdl2" => "np2"
|
|
end
|
|
end
|
|
|
|
def caveats; <<-EOS.undent
|
|
A Japanese TTF file named `default.ttf` should be in the working directory.
|
|
EOS
|
|
end
|
|
|
|
test do
|
|
assert_match %r{Usage: #{bin}/np2}, shell_output("#{bin}/np2 -h", 1)
|
|
end
|
|
end
|