forked from maxim-belkin/homebrew-xorg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
font-sun-misc.rb
38 lines (33 loc) · 1.21 KB
/
font-sun-misc.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 FontSunMisc < Formula
desc "X.Org Fonts: font sun misc"
homepage "http://www.x.org/"
### http://www.linuxfromscratch.org/blfs/view/svn/x/x7font.html
url "https://www.x.org/pub/individual/font/font-sun-misc-1.0.3.tar.bz2"
mirror "http://xorg.freedesktop.org/archive/individual/font/font-sun-misc-1.0.3.tar.bz2"
mirror "http://ftp.x.org/archive/individual/font/font-sun-misc-1.0.3.tar.bz2"
sha256 "481f4fcbbf7005658b080b3cf342c8c76de752e77f47958b2b383de73266d2e0"
# tag "linuxbrew"
bottle do
sha256 "f65fc8eafb10e26312b72b9388b4531c8e96a93e33f837879e7b0afcb04a3de1" => :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-sun-misc.md"
end
end