57 lines
2.1 KiB
Ruby
57 lines
2.1 KiB
Ruby
class Anjuta < Formula
|
|
desc "GNOME Integrated Development Environment"
|
|
homepage "http://anjuta.org"
|
|
url "https://download.gnome.org/sources/anjuta/3.28/anjuta-3.28.0.tar.xz"
|
|
sha256 "b087b0a5857952d0edd24dae458616eb166a3257bc647d5279a9e71495544779"
|
|
revision 3
|
|
|
|
bottle do
|
|
sha256 "3a7427832904f3e1de9884ef7bc770b83440f5252d3d30eb2aa77691e0b12de5" => :mojave
|
|
sha256 "fda24ffc6e28c9ec6ff0110f2c22f688947f08291f5c59522e0597658baa8815" => :high_sierra
|
|
sha256 "f0ee5bba46be9a314b2454e789e97bba477d1044dd7fac957bda39366286a870" => :sierra
|
|
sha256 "cf198c5bada78c4b4e0d71cc1c1f52b9af4e069ddbcfa678672b66a40aa1b41d" => :el_capitan
|
|
end
|
|
|
|
depends_on "intltool" => :build
|
|
depends_on "itstool" => :build
|
|
depends_on "pkg-config" => :build
|
|
depends_on "adwaita-icon-theme"
|
|
depends_on "autogen"
|
|
depends_on "gdl"
|
|
depends_on "gnome-themes-standard"
|
|
depends_on "gnutls"
|
|
depends_on "gtksourceview3"
|
|
depends_on "hicolor-icon-theme"
|
|
depends_on "libgda"
|
|
depends_on "libxml2"
|
|
depends_on "python@2"
|
|
depends_on "shared-mime-info"
|
|
depends_on "vala"
|
|
depends_on "vte3"
|
|
|
|
def install
|
|
system "./configure", "--disable-debug",
|
|
"--disable-dependency-tracking",
|
|
"--disable-silent-rules",
|
|
"--prefix=#{prefix}",
|
|
"--disable-schemas-compile"
|
|
ENV.append_path "PYTHONPATH", "#{Formula["libxml2"].opt_lib}/python2.7/site-packages"
|
|
system "make", "install"
|
|
end
|
|
|
|
def post_install
|
|
hshare = HOMEBREW_PREFIX/"share"
|
|
|
|
system "#{Formula["glib"].opt_bin}/glib-compile-schemas", hshare/"glib-2.0/schemas"
|
|
system "#{Formula["gtk+3"].opt_bin}/gtk3-update-icon-cache", "-f", "-t", hshare/"icons/hicolor"
|
|
# HighContrast is provided by gnome-themes-standard
|
|
if File.file?("#{hshare}/icons/HighContrast/.icon-theme.cache")
|
|
system "#{Formula["gtk+3"].opt_bin}/gtk3-update-icon-cache", "-f", "-t", hshare/"icons/HighContrast"
|
|
end
|
|
system "#{Formula["shared-mime-info"].opt_bin}/update-mime-database", hshare/"mime"
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/anjuta", "--version"
|
|
end
|
|
end
|