diff options
| author | Ps0ke | 2012-11-21 21:48:27 +0100 | 
|---|---|---|
| committer | Adam Vandenberg | 2013-01-17 10:11:25 -0800 | 
| commit | 802ce969559bc7330ac8fe5227bd8386734a6b26 (patch) | |
| tree | a2c37ba48fda4f9684b380b3d5ef445a582a0b7d | |
| parent | ee0c1157e5742bd08103c72e68996a3cc830fecf (diff) | |
| download | homebrew-802ce969559bc7330ac8fe5227bd8386734a6b26.tar.bz2 | |
dhex 0.68
Closes #16185.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
| -rw-r--r-- | Library/Formula/dhex.rb | 14 | 
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 | 
