homebrew-core/Formula/vramsteg.rb
Ayed cf4141509c Vramsteg 1.0.1
Vramsteg is a CLI progress bar that can be used from any script language.
It supports color, labels, percentage completion, elapsed time and estimates.

Closes Homebrew/homebrew#23326.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-11-06 20:45:19 -08:00

14 lines
340 B
Ruby

require 'formula'
class Vramsteg < Formula
homepage 'http://tasktools.org/projects/vramsteg.html'
url 'http://taskwarrior.org/download/vramsteg-1.0.1.tar.gz'
sha1 'bbc9f54e6e10b3e82dbbac6275e2e611d752e85d'
depends_on 'cmake' => :build
def install
system "cmake", ".", *std_cmake_args
system "make", "install"
end
end