From 6d62204bdb7698057ce96fd31dfa6d7b5e0bfd0c Mon Sep 17 00:00:00 2001 From: ilovezfs Date: Sun, 28 May 2017 09:42:37 -0700 Subject: [PATCH] xplanetfx: delete (#14019) --- Formula/xplanetfx.rb | 57 -------------------------------------------- 1 file changed, 57 deletions(-) delete mode 100644 Formula/xplanetfx.rb diff --git a/Formula/xplanetfx.rb b/Formula/xplanetfx.rb deleted file mode 100644 index 9af973f277..0000000000 --- a/Formula/xplanetfx.rb +++ /dev/null @@ -1,57 +0,0 @@ -class Xplanetfx < Formula - desc "Configure, run or daemonize xplanet for HQ Earth wallpapers" - homepage "http://mein-neues-blog.de/xplanetFX/" - url "http://repository.mein-neues-blog.de:9000/archive/xplanetfx-2.6.12_all.tar.gz" - version "2.6.12" - sha256 "42b84623821032b7f31797d0187e9e0e298282831327fe3fc508dd1d85c493a7" - - bottle do - cellar :any_skip_relocation - sha256 "37eb283551634da81516b7c0cd33beef8e1f44277b37305cedac53fd8233e1f8" => :sierra - sha256 "a705f96d9dbb1d179a8df93c60fac8a134d8270403a20b730501692d59ca737e" => :el_capitan - sha256 "da2d1f07a54aa76a853221024ad64ea599b1b7f57ed46cc0fb88538af44b75b8" => :yosemite - sha256 "58d9b7fafb5ea11f87275502ec817784ba3c93e0ee1c9aceb646f7a349ca5ae4" => :mavericks - end - - option "without-gui", "Build to run xplanetFX from the command-line only" - option "with-gnu-sed", "Build to use GNU sed instead of macOS sed" - - depends_on "xplanet" - depends_on "imagemagick" - depends_on "wget" - depends_on "coreutils" - depends_on "gnu-sed" => :optional - - if build.with? "gui" - depends_on "librsvg" - depends_on "pygtk" => "with-libglade" - end - - skip_clean "share/xplanetFX" - - def install - inreplace "bin/xplanetFX", "WORKDIR=/usr/share/xplanetFX", "WORKDIR=#{HOMEBREW_PREFIX}/share/xplanetFX" - - prefix.install "bin", "share" - - path = "#{Formula["coreutils"].opt_libexec}/gnubin" - path += ":#{Formula["gnu-sed"].opt_libexec}/gnubin" if build.with?("gnu-sed") - if build.with?("gui") - ENV.prepend_create_path "PYTHONPATH", "#{HOMEBREW_PREFIX}/lib/python2.7/site-packages/gtk-2.0" - ENV.prepend_create_path "GDK_PIXBUF_MODULEDIR", "#{HOMEBREW_PREFIX}/lib/gdk-pixbuf-2.0/2.10.0/loaders" - end - bin.env_script_all_files(libexec+"bin", :PATH => "#{path}:$PATH", :PYTHONPATH => ENV["PYTHONPATH"], :GDK_PIXBUF_MODULEDIR => ENV["GDK_PIXBUF_MODULEDIR"]) - end - - def post_install - if build.with?("gui") - # Change the version directory below with any future update - ENV["GDK_PIXBUF_MODULEDIR"]="#{HOMEBREW_PREFIX}/lib/gdk-pixbuf-2.0/2.10.0/loaders" - system "#{HOMEBREW_PREFIX}/bin/gdk-pixbuf-query-loaders", "--update-cache" - end - end - - test do - system "#{bin}/xplanetFX", "--help" - end -end