aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/cheops.rb
blob: e6202d436debf46168709160c3e1a7d90d8814df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
require 'formula'

class Cheops < Formula
  url 'http://files.nothingisreal.com/software/cheops/cheops-1.1.tar.bz2'
  homepage 'http://en.nothingisreal.com/wiki/CHEOPS'
  md5 'ced2dba9d0d6de77d538e04ff2909969'

  def install
    system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}", "--mandir=#{man}"
    system "make install"
  end
end