forked from maxim-belkin/homebrew-xorg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlibxinerama.rb
38 lines (32 loc) · 1.09 KB
/
libxinerama.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 Libxinerama < Formula
desc "X.Org Libraries: libXinerama"
homepage "http://www.x.org/" ### http://www.linuxfromscratch.org/blfs/view/svn/x/x7lib.html
url "http://ftp.x.org/pub/individual/lib/libXinerama-1.1.3.tar.bz2"
sha256 "7a45699f1773095a3f821e491cbd5e10c887c5a5fce5d8d3fced15c2ff7698e2"
# tag "linuxbrew"
bottle do
cellar :any
sha256 "a3ee24b79619182dc6eb91705e6b5ae2eb87f68cf2b02c15513f3734c5a89b13" => :x86_64_linux
end
option "without-test", "Skip compile-time tests"
option "with-static", "Build static libraries (not recommended)"
depends_on "pkg-config" => :build
depends_on "libx11"
depends_on "libxext"
depends_on "xextproto" => :build
depends_on "xineramaproto" => :build
def install
args = %W[
--prefix=#{prefix}
--sysconfdir=#{etc}
--localstatedir=#{var}
--disable-dependency-tracking
--disable-silent-rules
]
args << "--disable-static" if !build.with?("static")
system "./configure", *args
system "make"
system "make", "check" if build.with?("test")
system "make", "install"
end
end