blob: a7154113a60f0515f2c857c78e0be9f3154d0cfb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
require 'formula'
class Pce < Formula
homepage 'http://www.hampa.ch/pce/'
url 'http://www.hampa.ch/pub/pce/pce-0.2.2.tar.gz'
sha1 'b12dffbacaad44532b5c576bcffae5d11f17cc56'
head 'git://git.hampa.ch/pce.git'
devel do
url 'http://www.hampa.ch/pub/pce/pre/pce-20131222-fb58522.tar.gz'
sha1 '318199f4e06bc45d4c5585d77bb2309de3f5095a'
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
|