aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorRobin Ramael2011-01-06 17:33:11 +0100
committerMike McQuaid2011-01-06 22:53:26 +0000
commitcc6b6a3a9e491807f72c38cbba7dfbc2aa2abd0d (patch)
treebb186a9e90d47dec533dd976cc1d798fdfd798c1 /Library/Formula
parentc5a23230867c5bad93387b28f9e909dc9947adc8 (diff)
downloadhomebrew-cc6b6a3a9e491807f72c38cbba7dfbc2aa2abd0d.tar.bz2
New formula: gnu units.
gunits is a unit conversion program which offers more features than the mac osx installed units. Closes #3829. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/gnu-units.rb19
1 files changed, 19 insertions, 0 deletions
diff --git a/Library/Formula/gnu-units.rb b/Library/Formula/gnu-units.rb
new file mode 100644
index 000000000..7a032c9cc
--- /dev/null
+++ b/Library/Formula/gnu-units.rb
@@ -0,0 +1,19 @@
+require 'formula'
+
+class GnuUnits <Formula
+ url 'http://ftp.gnu.org/gnu/units/units-1.88.tar.gz'
+ 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