aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/genders.rb
blob: 41ef94e20f4e8d0296c167347594bc955f699144 (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 'https://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