blob: 7aebdecb3bb341ef9aeb6ab574e7a3dfe3733637 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
  | 
require 'formula'
class Genders < Formula
  homepage 'https://computing.llnl.gov/linux/genders.html'
  url 'http://downloads.sourceforge.net/project/genders/genders/1.20-1/genders-1.20.tar.gz'
  sha1 '3a1f3f7897c5443edb4d06bd8093b505078454e8'
  def install
    system "./configure", "--prefix=#{prefix}"
    system "make install"
  end
end
  |