New formula: rmtrash

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
Martin Kuehl 2010-01-28 20:46:17 +01:00 committed by Adam Vandenberg
parent 8d3328553d
commit 4b3ff2ec82

15
Formula/rmtrash.rb Normal file
View file

@ -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