16d077e95b
Closes Homebrew/homebrew#40453. Signed-off-by: Xu Cheng <xucheng@me.com>
14 lines
359 B
Ruby
14 lines
359 B
Ruby
class Wgetpaste < Formula
|
|
desc "Automate pasting to a number of pastebin services"
|
|
homepage "http://wgetpaste.zlin.dk/"
|
|
url "http://wgetpaste.zlin.dk/wgetpaste-2.26.tar.bz2"
|
|
sha256 "9265cd0718c815cce19a12c4745f74b288cafce404a26d64daf85ddcbadc8f86"
|
|
|
|
def install
|
|
bin.install "wgetpaste"
|
|
end
|
|
|
|
test do
|
|
system bin/"wgetpaste", "-S"
|
|
end
|
|
end
|