homebrew-core/Formula/pce.rb
Kyungdahm Yun 4c859fc078 pce 20160308 (devel)
Closes Homebrew/homebrew#50593.

Signed-off-by: Alex Dunn <dunn.alex@gmail.com>
2016-04-02 08:24:10 -07:00

35 lines
1 KiB
Ruby

class Pce < Formula
desc "PC emulator"
homepage "http://www.hampa.ch/pce/"
url "http://www.hampa.ch/pub/pce/pce-0.2.2.tar.gz"
sha256 "a8c0560fcbf0cc154c8f5012186f3d3952afdbd144b419124c09a56f9baab999"
head "git://git.hampa.ch/pce.git"
devel do
url "http://www.hampa.ch/pub/pce/pre/pce-20160308-72f1e10.tar.gz"
version "20160308"
sha256 "102d41f9e7e56058580215deaf99a068ed00da45fad82d1a2c6cf74abb241b99"
end
depends_on "sdl"
depends_on "readline"
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--without-x",
"--enable-readline"
system "make"
# We need to run 'make install' without parallelization, because
# of a race that may cause the 'install' utility to fail when
# two instances concurrently create the same parent directories.
ENV.deparallelize
system "make", "install"
end
test do
system "#{bin}/pce-ibmpc", "-V"
end
end