forked from maxim-belkin/homebrew-xorg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
font-mutt-misc.rb
38 lines (33 loc) · 1.22 KB
/
font-mutt-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 FontMuttMisc < Formula
desc "X.Org Fonts: font mutt 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-mutt-misc-1.0.3.tar.bz2"
mirror "http://xorg.freedesktop.org/archive/individual/font/font-mutt-misc-1.0.3.tar.bz2"
mirror "http://ftp.x.org/archive/individual/font/font-mutt-misc-1.0.3.tar.bz2"
sha256 "bd5f7adb34367c197773a9801df5bce7b019664941900b2a31fbfe1ff2830f8f"
# tag "linuxbrew"
bottle do
sha256 "5c8837af4e8ba9511d30d38d90be64bccd4256daffbdc189bc46c092633ce506" => :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-mutt-misc.md"
end
end