63 lines
2.2 KiB
Ruby
63 lines
2.2 KiB
Ruby
class Pytouhou < Formula
|
|
desc "Libre implementation of Touhou 6 engine"
|
|
homepage "https://pytouhou.linkmauve.fr/"
|
|
url "https://hg.linkmauve.fr/touhou", :revision => "5270c34b4c00", :using => :hg
|
|
version "634"
|
|
revision 5
|
|
head "https://hg.linkmauve.fr/touhou", :using => :hg
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha256 "9d69c15cda311bcf63cb37ff939d4ea4f1b7d675de4450ea00f35d2ec628305c" => :catalina
|
|
sha256 "f2bf5020d5fbf9e83847d416e8909bb583cbea9ce406453d2471dbbb6945b202" => :mojave
|
|
sha256 "f5e3c88bea9e1a533f0a96b401df4c2df90195d684ab8ecc2fc9471b9a09a4cd" => :high_sierra
|
|
sha256 "48d508217894d69689ba1d9c1ee65fab622f0895a7358e928dba38516c004de0" => :sierra
|
|
sha256 "edb451dc773f69a0550c687b90326d9baecb5d2bd1898b32cc550662b90c6eeb" => :el_capitan
|
|
end
|
|
|
|
depends_on "pkg-config" => :build
|
|
depends_on "gtk+3"
|
|
depends_on "libepoxy"
|
|
depends_on "py3cairo"
|
|
depends_on "pygobject3"
|
|
depends_on "python"
|
|
depends_on "sdl2"
|
|
depends_on "sdl2_image"
|
|
depends_on "sdl2_mixer"
|
|
depends_on "sdl2_ttf"
|
|
|
|
resource "Cython" do
|
|
url "https://files.pythonhosted.org/packages/b3/ae/971d3b936a7ad10e65cb7672356cff156000c5132cf406cb0f4d7a980fd3/Cython-0.28.3.tar.gz"
|
|
sha256 "1aae6d6e9858888144cea147eb5e677830f45faaff3d305d77378c3cba55f526"
|
|
end
|
|
|
|
def install
|
|
pyver = Language::Python.major_minor_version "python3"
|
|
ENV.prepend_create_path "PYTHONPATH", libexec/"vendor/lib/python#{pyver}/site-packages"
|
|
resource("Cython").stage do
|
|
system "python3", *Language::Python.setup_install_args(libexec/"vendor")
|
|
end
|
|
|
|
# hg can't determine revision number (no .hg on the stage)
|
|
inreplace "setup.py", /(version)=.+,$/, "\\1='#{version}',"
|
|
ENV.prepend_create_path "PYTHONPATH", libexec/"lib/python#{pyver}/site-packages"
|
|
system "python3", *Language::Python.setup_install_args(libexec)
|
|
|
|
# Set default game path to pkgshare
|
|
inreplace "#{libexec}/bin/pytouhou", /('path'): '\.'/, "\\1: '#{pkgshare}/game'"
|
|
|
|
bin.install Dir[libexec/"bin/*"]
|
|
bin.env_script_all_files(libexec/"bin", :PYTHONPATH => ENV["PYTHONPATH"])
|
|
end
|
|
|
|
def caveats; <<~EOS
|
|
The default path for the game data is:
|
|
#{pkgshare}/game
|
|
EOS
|
|
end
|
|
|
|
test do
|
|
ENV["LC_ALL"] = "en_US.UTF-8"
|
|
system "#{bin}/pytouhou", "--help"
|
|
end
|
|
end
|