homebrew-core/Formula/libxinerama.rb

48 lines
1.3 KiB
Ruby

class Libxinerama < Formula
desc "X.Org: API for Xinerama extension to X11 Protocol"
homepage "https://www.x.org/"
url "https://www.x.org/archive/individual/lib/libXinerama-1.1.4.tar.bz2"
sha256 "0008dbd7ecf717e1e507eed1856ab0d9cf946d03201b85d5dcf61489bb02d720"
license "MIT"
bottle do
cellar :any
sha256 "65b34fb9bd42fdf249ed942d470061da35456794b860863fd6997dd1b3c665fc" => :big_sur
sha256 "7a008044d1824d0585b13cba7021ec038bda6485a8789337cd6a9fd305b83233" => :catalina
sha256 "c69df5fe02995fbbf085b26da9ae1af4b890b2d57d1e8d115253706486297e5f" => :mojave
sha256 "27a945b6652dd0c36b3360ca55de687dd350feca08fc0e32bafe71d06edca377" => :high_sierra
end
depends_on "pkg-config" => :build
depends_on "libx11"
depends_on "libxext"
depends_on "xorgproto"
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
test do
(testpath/"test.c").write <<~EOS
#include "X11/extensions/Xinerama.h"
int main(int argc, char* argv[]) {
XineramaScreenInfo info;
return 0;
}
EOS
system ENV.cc, "test.c"
assert_equal 0, $CHILD_STATUS.exitstatus
end
end