blob: f37474f59bc0213125a8a91c74b744be1bf0ef5c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
  | 
require 'formula'
class GnuUnits < Formula
  homepage 'http://www.gnu.org/software/units/'
  url 'http://ftpmirror.gnu.org/units/units-2.00.tar.gz'
  mirror 'http://ftp.gnu.org/gnu/units/units-2.00.tar.gz'
  sha1 '6da9ea78ff0dc21bc43cf1809c530e61d9394ce0'
  option 'default-names', "Do not prepend 'g' to the binary"
  def install
    args = ["--prefix=#{prefix}"]
    args << "--program-prefix=g" unless build.include? 'default-names'
    system "./configure", *args
    system "make install"
  end
end
  |