fltk: add devel build.
Closes Homebrew/homebrew#44806. Closes Homebrew/homebrew#44880. Signed-off-by: Dominyk Tiller <dominyktiller@gmail.com>
This commit is contained in:
parent
d13ce73ced
commit
b6d9521c51
1 changed files with 26 additions and 9 deletions
|
@ -1,9 +1,28 @@
|
||||||
class Fltk < Formula
|
class Fltk < Formula
|
||||||
desc "Cross-platform C++ GUI toolkit"
|
desc "Cross-platform C++ GUI toolkit"
|
||||||
homepage "http://www.fltk.org/"
|
homepage "http://www.fltk.org/"
|
||||||
|
|
||||||
|
stable do
|
||||||
url "https://fossies.org/linux/misc/fltk-1.3.3-source.tar.gz"
|
url "https://fossies.org/linux/misc/fltk-1.3.3-source.tar.gz"
|
||||||
sha256 "f8398d98d7221d40e77bc7b19e761adaf2f1ef8bb0c30eceb7beb4f2273d0d97"
|
sha256 "f8398d98d7221d40e77bc7b19e761adaf2f1ef8bb0c30eceb7beb4f2273d0d97"
|
||||||
|
|
||||||
|
# Fltk 1.3.4 include support for El Capitan. Remove on update.
|
||||||
|
depends_on MaximumMacOSRequirement => :yosemite
|
||||||
|
|
||||||
|
# Fixes issue with -lpng not found.
|
||||||
|
# Based on: https://trac.macports.org/browser/trunk/dports/aqua/fltk/files/patch-src-Makefile.diff
|
||||||
|
patch :DATA
|
||||||
|
end
|
||||||
|
|
||||||
|
devel do
|
||||||
|
url "http://fltk.org/pub/fltk/snapshots/fltk-1.3.x-r10866.tar.gz"
|
||||||
|
sha256 "4fd4911a1da99c2fa1e6cc0c985b3b8645a7e954802230338fb513ae880ff2cc"
|
||||||
|
version "1.3.3-r10866" # convince brew that this is newer than stable
|
||||||
|
|
||||||
|
depends_on "autoconf" => :build
|
||||||
|
depends_on "autogen" => :build
|
||||||
|
end
|
||||||
|
|
||||||
bottle do
|
bottle do
|
||||||
sha1 "33c75cce41deadbfe54bdcc22ae91d17d3ecc782" => :mavericks
|
sha1 "33c75cce41deadbfe54bdcc22ae91d17d3ecc782" => :mavericks
|
||||||
sha1 "3674769086a1a667379c94aa50aa59b5f66f75d3" => :mountain_lion
|
sha1 "3674769086a1a667379c94aa50aa59b5f66f75d3" => :mountain_lion
|
||||||
|
@ -14,20 +33,18 @@ class Fltk < Formula
|
||||||
depends_on "libpng"
|
depends_on "libpng"
|
||||||
depends_on "jpeg"
|
depends_on "jpeg"
|
||||||
|
|
||||||
# Fltk 1.3.4 include support for El Capitan. Remove on update.
|
|
||||||
depends_on MaximumMacOSRequirement => :yosemite
|
|
||||||
|
|
||||||
fails_with :clang do
|
fails_with :clang do
|
||||||
build 318
|
build 318
|
||||||
cause "http://llvm.org/bugs/show_bug.cgi?id=10338"
|
cause "http://llvm.org/bugs/show_bug.cgi?id=10338"
|
||||||
end
|
end
|
||||||
|
|
||||||
# Fixes issue with -lpng not found.
|
|
||||||
# Based on: https://trac.macports.org/browser/trunk/dports/aqua/fltk/files/patch-src-Makefile.diff
|
|
||||||
patch :DATA
|
|
||||||
|
|
||||||
def install
|
def install
|
||||||
ENV.universal_binary if build.universal?
|
ENV.universal_binary if build.universal?
|
||||||
|
|
||||||
|
if build.devel?
|
||||||
|
ENV["NOCONFIGURE"] = "1"
|
||||||
|
system "./autogen.sh"
|
||||||
|
end
|
||||||
system "./configure", "--prefix=#{prefix}",
|
system "./configure", "--prefix=#{prefix}",
|
||||||
"--enable-threads",
|
"--enable-threads",
|
||||||
"--enable-shared"
|
"--enable-shared"
|
||||||
|
|
Loading…
Reference in a new issue