2011-01-06 16:33:11 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class GnuUnits < Formula
|
2011-01-06 16:33:11 +00:00
|
|
|
homepage 'http://www.gnu.org/software/units/'
|
2013-08-11 00:20:22 +00:00
|
|
|
url 'http://ftpmirror.gnu.org/units/units-2.02.tar.gz'
|
|
|
|
mirror 'http://ftp.gnu.org/gnu/units/units-2.02.tar.gz'
|
|
|
|
sha1 'e460371dc97034d17ce452e6b64991f7fd2d1409'
|
2011-01-06 16:33:11 +00:00
|
|
|
|
2012-08-13 14:57:00 +00:00
|
|
|
option 'default-names', "Do not prepend 'g' to the binary"
|
2011-01-06 16:33:11 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
args = ["--prefix=#{prefix}"]
|
2012-08-13 14:57:00 +00:00
|
|
|
args << "--program-prefix=g" unless build.include? 'default-names'
|
2011-01-06 16:33:11 +00:00
|
|
|
|
|
|
|
system "./configure", *args
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|