homebrew-core/Formula/gnome-icon-theme.rb

37 lines
1.5 KiB
Ruby

class GnomeIconTheme < Formula
desc "Icons for the GNOME project"
homepage "https://developer.gnome.org"
url "https://download.gnome.org/sources/adwaita-icon-theme/3.18/adwaita-icon-theme-3.18.0.tar.xz"
sha256 "5e9ce726001fdd8ee93c394fdc3cdb9e1603bbed5b7c62df453ccf521ec50e58"
bottle do
cellar :any_skip_relocation
sha256 "47a339c62c994b350334e36d7b593376adcc4779e9a767df0051ff4afe76d070" => :el_capitan
sha256 "795bcc9d4d6d34032c4a5987ecc3fbd06c69116a188cd7fac7bc5c2ce3fbfb79" => :yosemite
sha256 "14f676da17d596310a592efd03c67122ea108d01b85f46e8d83985e7a1e4b5ee" => :mavericks
end
depends_on "pkg-config" => :build
depends_on "gettext" => :build
depends_on "gtk+3" => :build # for gtk3-update-icon-cache
depends_on "icon-naming-utils" => :build
depends_on "intltool" => :build
depends_on "librsvg" => :build
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"GTK_UPDATE_ICON_CACHE=#{Formula["gtk+3"].opt_bin}/gtk3-update-icon-cache"
system "make", "install"
end
test do
# This checks that a -symbolic png file generated from svg exists
# and that a file created late in the install process exists.
# Someone who understands GTK+3 could probably write better tests that
# check if GTK+3 can find the icons.
assert (share/"icons/Adwaita/96x96/status/weather-storm-symbolic.symbolic.png").exist?
assert (share/"icons/Adwaita/index.theme").exist?
end
end