blob: bbc954aac0011c3f287144a130e219d4a36aee9d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
require 'formula'
class Trash < Formula
homepage 'http://hasseg.org/trash/'
url 'https://github.com/ali-rantakari/trash/archive/v0.8.4.tar.gz'
sha1 'e70ebeba684fd1fd126d912e3528115fbb2fb7be'
conflicts_with 'osxutils', :because => 'both install a trash binary'
def install
system "make"
system "make docs"
bin.install "trash"
man1.install "trash.1"
end
test do
system "#{bin}/trash"
end
end
|