homebrew-core/Formula/ghex.rb
2016-10-13 14:51:52 +01:00

39 lines
1.5 KiB
Ruby

class Ghex < Formula
desc "GNOME hex editor"
homepage "https://wiki.gnome.org/Apps/Ghex"
url "https://download.gnome.org/sources/ghex/3.18/ghex-3.18.3.tar.xz"
sha256 "c67450f86f9c09c20768f1af36c11a66faf460ea00fbba628a9089a6804808d3"
bottle do
sha256 "d0f9fbf54dd15dcccfd56ca3aebb9e0e52772ddc9d6c5ff3f6e11075f7c3dd94" => :sierra
sha256 "ab58d6fccf6c772e901ef0049677e07c5e415137b8923fd2ec47ab64f214cafc" => :el_capitan
sha256 "dc4d519fdc43685cc1ce7f0dbc79075f0fea71e228738ad0c1df2f635eb2362f" => :yosemite
end
depends_on "pkg-config" => :build
depends_on "intltool" => :build
depends_on "itstool" => :build
depends_on "libxml2" => [:build, "with-python"]
depends_on :python => :build if MacOS.version <= :snow_leopard
depends_on "gtk+3"
depends_on "hicolor-icon-theme"
def install
system "./configure", "--disable-debug",
"--disable-dependency-tracking",
"--disable-silent-rules",
"--disable-schemas-compile",
"--prefix=#{prefix}"
ENV.append_path "PYTHONPATH", "#{Formula["libxml2"].opt_lib}/python2.7/site-packages"
system "make", "install"
end
def post_install
system "#{Formula["glib"].opt_bin}/glib-compile-schemas", "#{HOMEBREW_PREFIX}/share/glib-2.0/schemas"
system "#{Formula["gtk+3"].opt_bin}/gtk3-update-icon-cache", "-f", "-t", "#{HOMEBREW_PREFIX}/share/icons/hicolor"
end
test do
system "#{bin}/ghex", "--help"
end
end