aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorMartin Kuehl2010-01-28 20:46:17 +0100
committerAdam Vandenberg2010-01-30 10:46:57 -0800
commit1210a251860a5c953af5ba317d0093391dda14aa (patch)
treebfe90051f8e34722fc6f93b709afbdc1986e230e /Library/Formula
parente79125a641046b61c5327e9f8755e55b9c442773 (diff)
downloadhomebrew-1210a251860a5c953af5ba317d0093391dda14aa.tar.bz2
New formula: rmtrash
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/rmtrash.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/Library/Formula/rmtrash.rb b/Library/Formula/rmtrash.rb
new file mode 100644
index 000000000..fc1130275
--- /dev/null
+++ b/Library/Formula/rmtrash.rb
@@ -0,0 +1,15 @@
+require 'formula'
+
+class Rmtrash <Formula
+ url 'http://www.nightproductions.net/downloads/rmtrash_source.tar.gz'
+ homepage 'http://www.nightproductions.net/cli.htm'
+ md5 'fecbb879766e23ec4c918b0e13bc7e43'
+ version '0.3.3'
+
+ def install
+ system "make LDFLAGS='-framework Foundation -prebind' all"
+ system "gzip #{name}.1"
+ man1.install "#{name}.1.gz"
+ bin.install "#{name}"
+ end
+end