forked from maxim-belkin/homebrew-xorg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathiceauth.rb
32 lines (28 loc) · 890 Bytes
/
iceauth.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
class Iceauth < Formula
desc "X.Org Applications: iceauth"
homepage "http://www.x.org/"
### http://www.linuxfromscratch.org/blfs/view/svn/x/x7app.html
url "https://www.x.org/pub/individual/app/iceauth-1.0.7.tar.bz2"
mirror "http://ftp.x.org/pub/individual/app/iceauth-1.0.7.tar.bz2"
sha256 "1216af2dee99b318fcf8bf9a259915273bcb37a7f1e7859af4f15d0ebf6f3f0a"
# tag "linuxbrew"
bottle do
cellar :any
sha256 "85faa34ab775ef0c8f6f539c97490dad0fb14654d3f01cb159e60965bb0e1a67" => :x86_64_linux
end
depends_on "pkg-config" => :build
depends_on "xproto" => :build
depends_on "libice"
def install
args = %W[
--prefix=#{prefix}
--sysconfdir=#{etc}
--localstatedir=#{var}
--disable-dependency-tracking
--disable-silent-rules
]
system "./configure", *args
system "make"
system "make", "install"
end
end