homebrew-core/Formula/cheops.rb

15 lines
431 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Cheops < Formula
homepage 'http://en.nothingisreal.com/wiki/CHEOPS'
2012-02-13 05:44:22 +00:00
url 'http://files.nothingisreal.com/software/cheops/cheops-1.1.tar.bz2'
md5 'ced2dba9d0d6de77d538e04ff2909969'
def install
2012-02-13 05:44:22 +00:00
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--mandir=#{man}"
system "make install"
end
end