homebrew-core/Formula/gistit.rb

32 lines
1.1 KiB
Ruby

class Gistit < Formula
desc "Command-line utility for creating Gists"
homepage "https://gistit.herokuapp.com/"
url "https://github.com/jrbasso/gistit/archive/v0.1.4.tar.gz"
sha256 "9d87cfdd6773ebbd3f6217b11d9ebcee862ee4db8be7e18a38ebb09634f76a78"
license "MIT"
head "https://github.com/jrbasso/gistit.git"
bottle do
sha256 cellar: :any, arm64_big_sur: "ad2652284c1907697535715d31eec9dfb558fe123b8cfe6aabf76ef0bd858cc7"
sha256 cellar: :any, big_sur: "090920bf2761a37d9b9877386a1c0b4466ba80a8c412e807a7a03de14239a3a0"
sha256 cellar: :any, catalina: "844955e49de622786a9a676e91b767926ff9953c950db2affa98f6d82978899f"
sha256 cellar: :any, mojave: "c55986f583c7d8744c4009f7856d00568ee5c3a31836075dd8b44af7b9807284"
end
depends_on "autoconf" => :build
depends_on "automake" => :build
depends_on "jansson"
def install
mv "configure.in", "configure.ac" # silence warning
system "./autogen.sh", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make"
system "make", "install"
end
test do
system "#{bin}/gistit", "-v"
end
end