aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorZhong Jianxin (azuwis)2010-01-08 16:43:09 +0800
committerMax Howell2010-01-13 11:40:26 +0000
commitc4c4642bf8ab3c6c5942598ebd4dc1ed35e4c0bd (patch)
tree43884e6d29eb4aca190018e2b68658be34171c55 /Library/Formula
parentbbddc7dd9f2f01a58f6ff96afa2994e34699dc8b (diff)
downloadhomebrew-c4c4642bf8ab3c6c5942598ebd4dc1ed35e4c0bd.tar.bz2
Whohas formula
Whohas is a command line tool that query multiple distributions' package archives. Whohas was designed to help package maintainers find ebuilds, pkgbuilds, and similar package definitions from other distributions to learn from.
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/whohas.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/whohas.rb b/Library/Formula/whohas.rb
new file mode 100644
index 000000000..2749555da
--- /dev/null
+++ b/Library/Formula/whohas.rb
@@ -0,0 +1,13 @@
+require 'formula'
+
+class Whohas <Formula
+ url 'http://www.philippwesche.org/200811/whohas/whohas-0.23.tar.gz'
+ homepage 'http://www.philippwesche.org/200811/whohas/intro.html'
+ md5 '0895fb6353950fe2e686fa867aaf0416'
+
+ def install
+ bin.install 'program/whohas'
+ man1.install 'usr/share/man/man1/whohas.1'
+ (share+'whohas').install 'intro.txt'
+ end
+end