homebrew-core/Formula/clpbar.rb

14 lines
483 B
Ruby
Raw Normal View History

class Clpbar < Formula
desc "Command-line progress bar"
homepage "http://clpbar.sourceforge.net/"
url "https://downloads.sourceforge.net/project/clpbar/clpbar/bar-1.11.1/bar_1.11.1.tar.gz"
sha256 "fa0f5ec5c8400316c2f4debdc6cdcb80e186e668c2e4471df4fec7bfcd626503"
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--program-prefix='clp'"
system "make", "install"
end
end