homebrew-core/Formula/termrec.rb
2015-12-21 13:28:27 +00:00

26 lines
812 B
Ruby

class Termrec < Formula
desc "Record \"videos\" of terminal output"
homepage "https://angband.pl/termrec.html"
url "https://github.com/kilobyte/termrec/archive/0.17.tar.gz"
sha256 "e3496dcb520b63036423cc72f3eaf66f690e869ef4ae508f027923062c34d84f"
head "https://github.com/kilobyte/termrec.git"
depends_on "autoconf" => :build
depends_on "automake" => :build
depends_on "libtool" => :build
depends_on "xz"
def install
inreplace "autogen", "libtoolize", "glibtoolize"
system "./autogen"
system "./configure", "--disable-debug",
"--disable-dependency-tracking",
"--disable-silent-rules",
"--prefix=#{prefix}"
system "make", "install"
end
test do
system "#{bin}/termrec", "--help"
end
end