aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorSudish Joseph2011-06-19 17:27:39 -0400
committerJack Nagel2011-09-01 20:26:57 -0500
commit8f8797e993f46a2446af920faea201efc7a3b107 (patch)
tree8be8693165e03236d910405f4f8718a505ed5ce5 /Library/Formula
parent3eeb9285d82c16a4335d98aca177150665d0e354 (diff)
downloadhomebrew-8f8797e993f46a2446af920faea201efc7a3b107.tar.bz2
ipv6calc 0.90.0
http://www.deepspace6.net/projects/ipv6calc.html Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/ipv6calc.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/Library/Formula/ipv6calc.rb b/Library/Formula/ipv6calc.rb
new file mode 100644
index 000000000..5e2f5bbab
--- /dev/null
+++ b/Library/Formula/ipv6calc.rb
@@ -0,0 +1,15 @@
+require 'formula'
+
+class Ipv6calc < Formula
+ url 'ftp://ftp.bieringer.de/pub/linux/IPv6/ipv6calc/ipv6calc-0.90.0.tar.gz'
+ homepage 'http://www.deepspace6.net/projects/ipv6calc.html'
+ md5 'c1a654214058fdac5f8c2ba6a196e2b8'
+
+ def install
+ system "./configure", "--disable-debug",
+ "--disable-dependency-tracking",
+ "--prefix=#{prefix}",
+ "--mandir=#{man}"
+ system "make install"
+ end
+end