pastebinit 1.4.1 (new formula)

Pastebinit is a command-line pastebin client. Easily pastebin
configuration files, logs, and more with a simple pipe. The default
pastebin is pastebin.com, but others are available (e.g.
paste.ubuntu.com). See `man pastebinit` for more info.
master
vemacs 2014-03-26 09:03:34 -06:00 committed by Mike McQuaid
parent 953b1a4578
commit ff0f88b359
1 changed files with 23 additions and 0 deletions

23
Formula/pastebinit.rb Normal file
View File

@ -0,0 +1,23 @@
require "formula"
class Pastebinit < Formula
homepage "https://launchpad.net/pastebinit"
url "https://launchpad.net/pastebinit/trunk/1.4.1/+download/pastebinit-1.4.1.tar.gz"
sha1 "1482311559bc939bb78bbd3e05b15400105bb9c8"
depends_on "python3"
depends_on "docbook2x" => :build
def install
inreplace "pastebinit", "/usr/bin/python3", Formula["python3"].opt_bin + "python3"
system "docbook2man", "pastebinit.xml"
bin.install "pastebinit"
etc.install "pastebin.d"
man1.install "PASTEBINIT.1" => "pastebinit.1"
libexec.install "po", "utils"
end
test do
system "date | pastebinit"
end
end