homebrew-core/Formula/fuse-emulator.rb
2017-03-11 06:27:02 -08:00

37 lines
1.2 KiB
Ruby

class FuseEmulator < Formula
desc "Free Unix Spectrum Emulator"
homepage "https://fuse-emulator.sourceforge.io/"
url "https://downloads.sourceforge.net/project/fuse-emulator/fuse/1.3.3/fuse-1.3.3.tar.gz"
sha256 "670184600230dd815b2c26d701ec035ba0f7a063c44b5480cab01eb9926a494e"
bottle do
sha256 "70f1a05abd9802909c85062bbddca4d3f0171a214b454b56b171b38ef1929c65" => :sierra
sha256 "1360159ea0bb838de0cec3782a6af28ded4c59153138f8c2edcb36ee2a9bb862" => :el_capitan
sha256 "eda6b8de1c0be710b5b2627471ab41c2b553dd5c2f0bcd6bccede749d50c40c8" => :yosemite
end
head do
url "https://svn.code.sf.net/p/fuse-emulator/code/trunk/fuse"
depends_on "automake" => :build
depends_on "autoconf" => :build
depends_on "libtool" => :build
end
depends_on "pkg-config" => :build
depends_on "sdl"
depends_on "libspectrum"
depends_on "libpng"
def install
system "./autogen.sh" if build.head?
system "./configure", "--disable-dependency-tracking",
"--disable-sdltest",
"--with-sdl",
"--prefix=#{prefix}"
system "make", "install"
end
test do
system "#{bin}/fuse", "--version"
end
end