31 lines
1 KiB
Ruby
31 lines
1 KiB
Ruby
class ScummvmTools < Formula
|
|
desc "Collection of tools for ScummVM"
|
|
homepage "https://www.scummvm.org/"
|
|
url "https://www.scummvm.org/frs/scummvm-tools/2.0.0/scummvm-tools-2.0.0.tar.xz"
|
|
sha256 "c2042ccdc6faaf745552bac2c00f213da382a7e382baa96343e508fced4451b3"
|
|
head "https://github.com/scummvm/scummvm-tools.git"
|
|
|
|
bottle do
|
|
sha256 "5914f77097fe7684e1a8718cbede0d994c9d52d400e6b47eff9c70d6d683e34d" => :mojave
|
|
sha256 "84313eb5337d2f3c37f9ad5c494da4b43546422f9428f33dcf9b0c2af54473b8" => :high_sierra
|
|
sha256 "5a9144ac0d1812d401ff76df988bac6bc681903bd94aad2b3f97a2e2279e9d73" => :sierra
|
|
sha256 "c68cf67ed07a34a4db800598a64b6eb293ac714da6706ef89e58ce9a13ecde99" => :el_capitan
|
|
end
|
|
|
|
depends_on "boost"
|
|
depends_on "flac"
|
|
depends_on "freetype"
|
|
depends_on "libpng"
|
|
depends_on "libvorbis"
|
|
depends_on "mad"
|
|
depends_on "wxmac"
|
|
|
|
def install
|
|
system "./configure", "--prefix=#{prefix}"
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/scummvm-tools-cli", "--list"
|
|
end
|
|
end
|