aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/slurm.rb
diff options
context:
space:
mode:
authorBrett Koonce2014-10-31 17:37:49 -0700
committerBrett Koonce2014-11-01 20:56:11 -0700
commit4a6f030d077abd9ee00a0bb83e999d6cfe2ce79a (patch)
tree3d396160078e50ec7e63546736c45af09060fa14 /Library/Formula/slurm.rb
parent3344d72d92d45f6d211cc329229be90a393057f7 (diff)
downloadhomebrew-4a6f030d077abd9ee00a0bb83e999d6cfe2ce79a.tar.bz2
slurm 0.4.2
Diffstat (limited to 'Library/Formula/slurm.rb')
-rw-r--r--Library/Formula/slurm.rb22
1 files changed, 2 insertions, 20 deletions
diff --git a/Library/Formula/slurm.rb b/Library/Formula/slurm.rb
index 5293d6166..6133a63c0 100644
--- a/Library/Formula/slurm.rb
+++ b/Library/Formula/slurm.rb
@@ -2,8 +2,8 @@ require "formula"
class Slurm < Formula
homepage "https://github.com/mattthias/slurm"
- url "https://github.com/mattthias/slurm/archive/upstream/0.4.0.tar.gz"
- sha1 "b50c2245513f1241f78a487504eb5e460aec9a04"
+ url "https://github.com/mattthias/slurm/archive/upstream/0.4.2.tar.gz"
+ sha1 "927687980445066a0c12c938321a27bc717bcad9"
bottle do
cellar :any
@@ -14,10 +14,6 @@ class Slurm < Formula
depends_on "scons" => :build
- # patch to support colour ncurses on OS X
- # see https://github.com/mattthias/slurm/pull/2
- patch :DATA
-
def install
scons
bin.install "slurm"
@@ -27,17 +23,3 @@ class Slurm < Formula
system "#{bin}/slurm", "-h"
end
end
-
-__END__
-diff --git a/SConstruct b/SConstruct
-index 8c85b77..de3d82b 100644
---- a/SConstruct
-+++ b/SConstruct
-@@ -5,6 +5,8 @@ if os.uname()[0] == 'Linux':
- env.Append(CPPDEFINES=['_HAVE_NCURSES','_HAVE_NCURSES_COLOR'])
- elif os.uname()[0] == 'GNU/kFreeBSD':
- env.Append(CPPDEFINES=['_HAVE_NCURSES','_HAVE_NCURSES_COLOR'])
-+elif os.uname()[0] == 'Darwin':
-+ env.Append(CPPDEFINES=['_HAVE_NCURSES','_HAVE_NCURSES_COLOR'])
-
- env.Append( LIBS = ['ncurses'] )