homebrew-core/Formula/figlet.rb
BrewTestBot 95884bae22 Formula files style updates.
Closes Homebrew/homebrew#42407.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-08-03 14:21:42 +01:00

34 lines
1 KiB
Ruby

class Figlet < Formula
desc "Banner-like program prints strings as ASCII art"
homepage "http://www.figlet.org"
url "ftp://ftp.figlet.org/pub/figlet/program/unix/figlet-2.2.5.tar.gz"
sha256 "bf88c40fd0f077dab2712f54f8d39ac952e4e9f2e1882f1195be9e5e4257417d"
resource "contrib" do
url "ftp://ftp.figlet.org/pub/figlet/fonts/contributed.tar.gz"
sha256 "2c569e052e638b28e4205023ae717f7b07e05695b728e4c80f4ce700354b18c8"
end
resource "intl" do
url "ftp://ftp.figlet.org/pub/figlet/fonts/international.tar.gz"
sha256 "e6493f51c96f8671c29ab879a533c50b31ade681acfb59e50bae6b765e70c65a"
end
def install
share_fonts = share+"figlet/fonts"
share_fonts.install resource("contrib"), resource("intl")
chmod 0666, %w[Makefile showfigfonts]
man6.mkpath
bin.mkpath
system "make", "prefix=#{prefix}",
"DEFAULTFONTDIR=#{share_fonts}",
"MANDIR=#{man}",
"install"
end
test do
system "#{bin}/figlet", "-f", "larry3d", "hello, figlet"
end
end