aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Library/Formula/dhex.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/Library/Formula/dhex.rb b/Library/Formula/dhex.rb
new file mode 100644
index 000000000..6d4550735
--- /dev/null
+++ b/Library/Formula/dhex.rb
@@ -0,0 +1,14 @@
+require 'formula'
+
+class Dhex < Formula
+ homepage 'http://www.dettus.net/dhex/'
+ url 'http://www.dettus.net/dhex/dhex_0.68.tar.gz'
+ sha1 'd23d65a7b330b47f8254f6c1ff25a30c4778440e'
+
+ def install
+ system "make"
+ bin.install 'dhex'
+ man1.install 'dhex.1'
+ man5.install Dir['*.5']
+ end
+end