blob: 66359ff6205710a4554c9de34b6c5495e1d65140 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
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"
man1.install gzip("rmtrash.1")
bin.install "rmtrash"
end
end
|