diff options
| author | Stefan Pfenninger | 2012-11-02 09:20:32 +0000 |
|---|---|---|
| committer | Adam Vandenberg | 2012-12-28 14:49:04 -0800 |
| commit | e34b0df6b7a3a8160c0cf28c136c206b83ecd1fb (patch) | |
| tree | 8d3beeb3b4bfd8b57f5efea2a2993d35ead3a1ad /Library/Formula | |
| parent | 9579e478b206ed76ed42bdc335a5ba4aacb05e82 (diff) | |
| download | homebrew-e34b0df6b7a3a8160c0cf28c136c206b83ecd1fb.tar.bz2 | |
trash 0.8.2
Closes #15810.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/trash.rb | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Library/Formula/trash.rb b/Library/Formula/trash.rb new file mode 100644 index 000000000..b7e6d0d3e --- /dev/null +++ b/Library/Formula/trash.rb @@ -0,0 +1,18 @@ +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 |
