2011-01-06 16:33:11 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class GnuUnits < Formula
|
2011-09-12 16:31:30 +00:00
|
|
|
url 'http://ftpmirror.gnu.org/units/units-1.88.tar.gz'
|
2011-11-30 18:56:07 +00:00
|
|
|
mirror 'http://ftp.gnu.org/gnu/units/units-1.88.tar.gz'
|
2011-01-06 16:33:11 +00:00
|
|
|
homepage 'http://www.gnu.org/software/units/'
|
|
|
|
md5 '9b2ee6e7e0e9c62741944cf33fc8a656'
|
|
|
|
|
|
|
|
def options
|
|
|
|
[['--default-names', "Do NOT prepend 'g' to the binary; will override system utils."]]
|
|
|
|
end
|
|
|
|
|
|
|
|
def install
|
|
|
|
args = ["--prefix=#{prefix}"]
|
|
|
|
args << "--program-prefix=g" unless ARGV.include? '--default-names'
|
|
|
|
|
|
|
|
system "./configure", *args
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|