blob: 4cd657f77b7a60b44189773b5bf7489f8b433eee (
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
|