cf4141509c
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>
14 lines
340 B
Ruby
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
|