homebrew-core/Formula/trash.rb
Stefan Pfenninger 993eb7107b trash 0.8.2
Closes Homebrew/homebrew#15810.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-12-28 14:49:04 -08:00

18 lines
340 B
Ruby

require 'formula'
class Trash < Formula
homepage 'http://hasseg.org/trash/'
url 'http://hasseg.org/git-public/trash.git/', :using => :git, :tag => 'v0.8.2'
version '0.8.2'
def install
system "make"
system "make docs"
bin.install "trash"
man1.install "trash.1"
end
def test
system "#{bin}/trash"
end
end