66f8fc223a
The `safe-rm.org.nz` domain is now deprecated and redirects to Launchpad. Closes Homebrew/homebrew#25582. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
18 lines
381 B
Ruby
18 lines
381 B
Ruby
require 'formula'
|
|
|
|
class SafeRm < Formula
|
|
homepage 'https://launchpad.net/safe-rm'
|
|
url 'https://launchpad.net/safe-rm/trunk/0.10/+download/safe-rm-0.10.tar.gz'
|
|
sha1 '6b829ae68e1fa3c8016e15ab37fcc08caef7712f'
|
|
|
|
def install
|
|
bin.install 'safe-rm'
|
|
end
|
|
|
|
test do
|
|
file = "a-file"
|
|
touch file
|
|
system "#{bin}/safe-rm", file
|
|
assert !File.exist?(file)
|
|
end
|
|
end
|