homebrew-core/Formula/wgetpaste.rb
2018-12-07 15:12:00 +01:00

19 lines
442 B
Ruby

class Wgetpaste < Formula
desc "Automate pasting to a number of pastebin services"
homepage "https://wgetpaste.zlin.dk/"
url "https://wgetpaste.zlin.dk/wgetpaste-2.28.tar.bz2"
sha256 "538d38bab491544bdf6f05f7a38f83d4c3dfee77de7759cb6b9be1ebfdd609c2"
bottle :unneeded
depends_on "wget"
def install
bin.install "wgetpaste"
zsh_completion.install "_wgetpaste"
end
test do
system bin/"wgetpaste", "-S"
end
end