homebrew-core/Formula/figlet.rb

44 lines
1.1 KiB
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class ContribFonts < Formula
url 'ftp://ftp.figlet.org:21//pub/figlet/fonts/contributed.tar.gz'
version "2.2.2"
md5 '6e2dec4499f7a7fe178522e02e0b6cd1'
end
2011-03-10 05:11:03 +00:00
class InternationalFonts < Formula
url 'ftp://ftp.figlet.org:21//pub/figlet/fonts/international.tar.gz'
version "2.2.2"
md5 'b2d53f7e251014adcdb4d407c47f90ef'
end
2011-03-10 05:11:03 +00:00
class Figlet < Formula
url 'ftp://ftp.figlet.org/pub/figlet/program/unix/figlet-2.2.4.tar.gz'
homepage 'http://www.figlet.org'
md5 'ea048d8d0b56f9c58e55514d4eb04203'
def install
2011-05-02 21:30:50 +00:00
share_fonts = share+"figlet/fonts"
File.chmod 0666, 'Makefile'
File.chmod 0666, 'showfigfonts'
man6.mkpath
bin.mkpath
2011-05-02 21:30:50 +00:00
ContribFonts.new.brew { share_fonts.install Dir['*'] }
InternationalFonts.new.brew { share_fonts.install Dir['*'] }
inreplace "Makefile" do |s|
s.gsub! "/usr/local", prefix
2011-05-02 21:30:50 +00:00
s.change_make_var! 'DEFAULTFONTDIR', share_fonts
s.change_make_var! 'MANDIR', man
end
system "make install"
end
2011-05-02 21:30:50 +00:00
def test
system "#{bin}/figlet -f larry3d hello, figlet"
2011-05-02 21:30:50 +00:00
end
end