blob: effb8344a3a16e5395f99f9b911cf70874d1d0ab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
require 'formula'
class ContribFonts < Formula
url 'ftp://ftp.figlet.org:21//pub/figlet/fonts/contributed.tar.gz'
version "2.2.2"
md5 '6e2dec4499f7a7fe178522e02e0b6cd1'
end
class InternationalFonts < Formula
url 'ftp://ftp.figlet.org:21//pub/figlet/fonts/international.tar.gz'
version "2.2.2"
md5 'b2d53f7e251014adcdb4d407c47f90ef'
end
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
share_fonts = share+"figlet/fonts"
File.chmod 0666, 'Makefile'
File.chmod 0666, 'showfigfonts'
man6.mkpath
bin.mkpath
ContribFonts.new.brew { share_fonts.install Dir['*'] }
InternationalFonts.new.brew { share_fonts.install Dir['*'] }
inreplace "Makefile" do |s|
s.gsub! "/usr/local", prefix
s.change_make_var! 'DEFAULTFONTDIR', share_fonts
s.change_make_var! 'MANDIR', man6
end
system "make install"
end
def test
system "figlet -f larry3d hello, figlet"
end
end
|