blob: 9af5aa18695744cbcaf6103e793cfa82de70d8d1 (
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
|
require 'formula'
class Figlet < Formula
homepage 'http://www.figlet.org'
url 'ftp://ftp.figlet.org/pub/figlet/program/unix/figlet-2.2.5.tar.gz'
sha1 'dda696958c161bd71d6590152c94c4f705415727'
resource 'contrib' do
url 'ftp://ftp.figlet.org/pub/figlet/fonts/contributed.tar.gz'
sha1 'a23ecfdb54301e93b6578c3c465ba84c8f861d4f'
end
resource 'intl' do
url 'ftp://ftp.figlet.org/pub/figlet/fonts/international.tar.gz'
sha1 '4bdc505f82305debf8108b725ac418f404a8bcb0'
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
|