forked from maxim-belkin/homebrew-xorg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfont-adobe-100dpi.rb
38 lines (33 loc) · 1.24 KB
/
font-adobe-100dpi.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
37
38
class FontAdobe100dpi < Formula
desc "X.Org Fonts: font adobe 100dpi"
homepage "http://www.x.org/"
### http://www.linuxfromscratch.org/blfs/view/svn/x/x7font.html
url "https://www.x.org/pub/individual/font/font-adobe-100dpi-1.0.3.tar.bz2"
mirror "http://xorg.freedesktop.org/archive/individual/font/font-adobe-100dpi-1.0.3.tar.bz2"
mirror "http://ftp.x.org/archive/individual/font/font-adobe-100dpi-1.0.3.tar.bz2"
sha256 "b2c08433eab5cb202470aa9f779efefce8d9cab2534f34f3aa4a31d05671c054"
# tag "linuxbrew"
bottle do
sha256 "f41d99106899272196572b7747f472699bd9a39aac6fd4019d5912e32e6bd12b" => :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
depends_on "bzip2" => [:build, :recommended]
def install
args = %W[
--prefix=#{prefix}
--sysconfdir=#{etc}
--localstatedir=#{var}
--disable-dependency-tracking
--disable-silent-rules
]
args << "--with-compression=bzip2" if build.with?("bzip2")
system "./configure", *args
system "make"
system "make", "install"
prefix.install "README" => "font-adobe-100dpi.md"
end
end