60 lines
1.8 KiB
Ruby
60 lines
1.8 KiB
Ruby
class GtkVnc < Formula
|
|
desc "VNC viewer widget for GTK"
|
|
homepage "https://wiki.gnome.org/Projects/gtk-vnc"
|
|
url "https://download.gnome.org/sources/gtk-vnc/0.7/gtk-vnc-0.7.1.tar.xz"
|
|
sha256 "f34baa696615ef67666e8465b4d0ac563355e999a77d2cc42ad4625a24f7aab1"
|
|
|
|
bottle do
|
|
sha256 "fe20355933a766ba4bb5a7a30bc0609e288d90acc488086c8b60131747f997b7" => :high_sierra
|
|
sha256 "c95f372db04ab13aa14d32a08365c70b2509f44e2e00e35dbe8951c0fbf2ff35" => :sierra
|
|
sha256 "8a06aa2e8724eff7e84b5249eaa8d0b2f82dba260b35fab9785c4ff4ed2ef065" => :el_capitan
|
|
sha256 "9d4ceb7f6eddd4a8db287c1e4c4dcdca1bd302eaaf11879d2080c39e771c333e" => :yosemite
|
|
end
|
|
|
|
# Fails with Xcode 7.1 or older
|
|
# error: use of undeclared identifier 'MAP_ANONYMOUS'
|
|
# Upstream bug: https://bugzilla.gnome.org/show_bug.cgi?id=602371
|
|
depends_on :macos => :yosemite
|
|
|
|
depends_on "gettext" => :build
|
|
depends_on "intltool" => :build
|
|
depends_on "libtool" => :build
|
|
depends_on "pkg-config" => :build
|
|
depends_on "gnutls"
|
|
depends_on "gtk+3"
|
|
depends_on "libgcrypt"
|
|
depends_on "gobject-introspection" => :optional
|
|
depends_on "pulseaudio" => :optional
|
|
depends_on "vala" => :optional
|
|
|
|
def install
|
|
args = %W[
|
|
--prefix=#{prefix}
|
|
--with-gtk=3.0
|
|
--with-examples
|
|
--with-python
|
|
]
|
|
|
|
args << "--enable-introspection" if build.with? "gobject-introspection"
|
|
args << "--enable-pulseaudio" if build.with? "pulseaudio"
|
|
if build.with? "vala"
|
|
args << "--enable-vala"
|
|
else
|
|
args << "--disable-vala"
|
|
end
|
|
|
|
# fix "The deprecated ucontext routines require _XOPEN_SOURCE to be defined"
|
|
ENV.append "CPPFLAGS", "-D_XOPEN_SOURCE=600"
|
|
# for MAP_ANON
|
|
ENV.append "CPPFLAGS", "-D_DARWIN_C_SOURCE"
|
|
|
|
system "./configure", *args
|
|
|
|
system "make"
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/gvncviewer", "--help-all"
|
|
end
|
|
end
|