genders 1.22

compile with --with-java-extensions=no because the build is broken.
note that current version 1.20 lead to segmentation fault when
using psdh with genders

Closes #1366.

Signed-off-by: Dominyk Tiller <dominyktiller@gmail.com>
master
Saverio Proto 2016-05-23 21:55:13 +02:00 committed by Dominyk Tiller
parent 973e9a4873
commit 0870f9905b
1 changed files with 6 additions and 4 deletions

View File

@ -1,8 +1,8 @@
class Genders < Formula
desc "Static cluster configuration database for cluster management"
homepage "https://computing.llnl.gov/linux/genders.html"
url "https://downloads.sourceforge.net/project/genders/genders/1.20-1/genders-1.20.tar.gz"
sha256 "374ef2833ad53ea9ca4ccbabd7a66d77ab0b46785e299c0e64f95577eed96ac9"
url "https://downloads.sourceforge.net/project/genders/genders/1.22-1/genders-1.22.tar.gz"
sha256 "0ff292825a29201106239c4d47d9ce4c6bda3f51c78c0463eb2634ecc337b774"
bottle do
cellar :any
@ -14,8 +14,10 @@ class Genders < Formula
option "with-non-shortened-hostnames", "Allow non shortened hostnames that can include dots e.g. www.google.com"
def install
args = ["--prefix=#{prefix}"]
args = %W[
--prefix=#{prefix}
--with-java-extensions=no
]
args << "--with-non-shortened-hostnames" if build.with? "non-shortened-hostnames"
system "./configure", *args