forked from maxim-belkin/homebrew-xorg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
font-bh-type1.rb
36 lines (31 loc) · 1.1 KB
/
font-bh-type1.rb
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
class FontBhType1 < Formula
desc "X.Org Fonts: font bh type1"
homepage "http://www.x.org/"
### http://www.linuxfromscratch.org/blfs/view/svn/x/x7font.html
url "https://www.x.org/pub/individual/font/font-bh-type1-1.0.3.tar.bz2"
mirror "http://xorg.freedesktop.org/archive/individual/font/font-bh-type1-1.0.3.tar.bz2"
mirror "http://ftp.x.org/archive/individual/font/font-bh-type1-1.0.3.tar.bz2"
sha256 "761455a297486f3927a85d919b5c948d1d324181d4bea6c95d542504b68a63c1"
# tag "linuxbrew"
bottle do
sha256 "2052581dfc1e47a9827aaf85ba312bc37cc59555a8377c8564e07d476e3f94c1" => :x86_64_linux
end
depends_on "pkg-config" => :build
depends_on "font-util" => :build
depends_on "bdftopcf" => :build
depends_on "mkfontdir" => :build
depends_on "fontconfig" => :build
def install
args = %W[
--prefix=#{prefix}
--sysconfdir=#{etc}
--localstatedir=#{var}
--disable-dependency-tracking
--disable-silent-rules
]
system "./configure", *args
system "make"
system "make", "install"
prefix.install "README" => "font-bh-type1.md"
end
end