gimp: migrate to Homebrew Cask.
This commit is contained in:
parent
db65fb96ae
commit
c6756fa5bf
2 changed files with 1 additions and 87 deletions
|
@ -1,87 +0,0 @@
|
|||
class Gimp < Formula
|
||||
desc "GNU Image Manipulation Program"
|
||||
homepage "https://www.gimp.org"
|
||||
revision 1
|
||||
|
||||
stable do
|
||||
url "https://download.gimp.org/pub/gimp/v2.8/gimp-2.8.16.tar.bz2"
|
||||
sha256 "95e3857bd0b5162cf8d1eda8c78b741eef968c3e3ac6c1195aaac2a4e2574fb7"
|
||||
|
||||
resource "gegl02" do
|
||||
url "https://download.gimp.org/pub/gegl/0.2/gegl-0.2.0.tar.bz2"
|
||||
sha256 "df2e6a0d9499afcbc4f9029c18d9d1e0dd5e8710a75e17c9b1d9a6480dd8d426"
|
||||
end
|
||||
end
|
||||
|
||||
bottle do
|
||||
sha256 "3265ff12a50380f25ce3bc52486896814d913ea99bddc6440088b3cfd5bd0e13" => :el_capitan
|
||||
sha256 "129c841e7fd9d9c9792fa40ff8d9111e5148fc9a6ad5b7854287cfe7de66808b" => :yosemite
|
||||
sha256 "04d580da6f86b8b78f6c0607e96bbc93b4d327dd63fa17e8784de30e8d6ea5b2" => :mavericks
|
||||
end
|
||||
|
||||
head do
|
||||
url "https://github.com/GNOME/gimp.git", :branch => "gimp-2-8"
|
||||
depends_on "gegl"
|
||||
end
|
||||
|
||||
depends_on "pkg-config" => :build
|
||||
depends_on "gettext" => :build
|
||||
depends_on "intltool" => :build
|
||||
depends_on "babl"
|
||||
depends_on "fontconfig"
|
||||
depends_on "pango"
|
||||
depends_on "gtk+"
|
||||
depends_on "gtk-mac-integration"
|
||||
depends_on "cairo"
|
||||
depends_on "pygtk"
|
||||
depends_on "glib"
|
||||
depends_on "gdk-pixbuf"
|
||||
depends_on "freetype"
|
||||
depends_on "xz" # For LZMA
|
||||
depends_on "dbus"
|
||||
depends_on "aalib"
|
||||
depends_on "librsvg"
|
||||
depends_on "libpng" => :recommended
|
||||
depends_on "libwmf" => :recommended
|
||||
depends_on "libtiff" => :recommended
|
||||
depends_on "ghostscript" => :optional
|
||||
depends_on "poppler" => :optional
|
||||
depends_on "libexif" => :optional
|
||||
|
||||
def install
|
||||
if build.stable?
|
||||
resource("gegl02").stage do
|
||||
ENV.no_optimization if ENV.compiler == :llvm
|
||||
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
||||
"--prefix=#{libexec}/gegl02", "--disable-docs"
|
||||
system "make", "install"
|
||||
end
|
||||
ENV.prepend_path "PATH", libexec/"gegl02/bin"
|
||||
ENV.prepend_path "PKG_CONFIG_PATH", libexec/"gegl02/lib/pkgconfig"
|
||||
end
|
||||
|
||||
args = %W[
|
||||
--prefix=#{prefix}
|
||||
--disable-silent-rules
|
||||
--disable-dependency-tracking
|
||||
--disable-glibtest
|
||||
--disable-gtktest
|
||||
--datarootdir=#{share}
|
||||
--sysconfdir=#{etc}
|
||||
--without-x
|
||||
]
|
||||
|
||||
args << "--without-libtiff" if build.without? "libtiff"
|
||||
args << "--without-libpng" if build.without? "libpng"
|
||||
args << "--without-wmf" if build.without? "libwmf"
|
||||
args << "--without-poppler" if build.without? "poppler"
|
||||
args << "--without-libexif" if build.without? "libexif"
|
||||
|
||||
system "./configure", *args
|
||||
system "make", "install"
|
||||
end
|
||||
|
||||
test do
|
||||
system "#{bin}/gimp", "--version"
|
||||
end
|
||||
end
|
|
@ -87,6 +87,7 @@
|
|||
"geomview": "homebrew/x11",
|
||||
"ggobi": "homebrew/science",
|
||||
"giblib": "homebrew/x11",
|
||||
"gimp": "caskroom/cask",
|
||||
"git-encrypt": "homebrew/boneyard",
|
||||
"git-flow-clone": "homebrew/boneyard",
|
||||
"git-latexdiff": "homebrew/tex",
|
||||
|
|
Loading…
Reference in a new issue