homebrew-core/Formula/fontforge.rb

88 lines
3 KiB
Ruby
Raw Normal View History

require "formula"
2011-03-10 05:11:03 +00:00
class Fontforge < Formula
homepage "https://fontforge.github.io"
url "https://github.com/fontforge/fontforge/releases/download/20141126/fontforge-2014-11-26-Unix-Source.tar.gz"
sha1 "ecd776480a47cdcbe1b30ce275172d7d52288e77"
head "https://github.com/fontforge/fontforge.git"
version "20141126"
2013-09-20 15:15:54 +00:00
2014-05-15 19:07:39 +00:00
bottle do
2014-11-27 03:31:11 +00:00
sha1 "9cb3881adf612eae21aa4c70eb17907a96f05d8d" => :yosemite
sha1 "a079566b826ae865e2f393eaaa56cdc097d1f458" => :mavericks
sha1 "dcb8c5630310b8a7c534e90e4579d2734a0154ab" => :mountain_lion
2014-05-15 19:07:39 +00:00
end
2014-11-13 18:08:06 +00:00
deprecated_option "with-x" => "with-x11"
2014-11-13 18:08:06 +00:00
deprecated_option "with-gif" => "with-giflib"
2014-11-13 18:08:06 +00:00
2014-11-13 18:08:06 +00:00
option "with-giflib", "Build with GIF support"
# Autotools are required to build from source in all releases.
# I have upstreamed a request to change this, so keep monitoring the situation.
depends_on "autoconf" => :build
depends_on "automake" => :build
depends_on "pkg-config" => :build
2014-11-06 02:32:09 +00:00
depends_on "libtool" => :run
depends_on "gettext"
depends_on "pango"
depends_on "zeromq"
depends_on "czmq"
depends_on "libpng" => :recommended
depends_on "jpeg" => :recommended
depends_on "libtiff" => :recommended
2014-11-13 18:08:06 +00:00
depends_on :x11 => :optional
depends_on "gtk+" => :optional
2014-11-13 18:08:06 +00:00
depends_on "giflib" => :optional
depends_on "libspiro" => :optional
depends_on "fontconfig"
depends_on "cairo"
depends_on :python if MacOS.version <= :snow_leopard
fails_with :llvm do
build 2336
cause "Compiling cvexportdlg.c fails with error: initializer element is not constant"
end
2011-03-21 21:24:22 +00:00
def install
args = ["--prefix=#{prefix}"]
2014-11-13 18:08:06 +00:00
args << "--with-x" if build.with? "x11"
args << "--enable-gtk2-use" if build.with? "gtk+"
args << "--without-libpng" if build.without? "libpng"
args << "--without-libjpeg" if build.without? "jpeg"
args << "--without-libtiff" if build.without? "libtiff"
args << "--without-giflib" if build.without? "giflib"
args << "--without-libspiro" if build.without? "libspiro"
# Fix linker error; see: http://trac.macports.org/ticket/25012
ENV.append "LDFLAGS", "-lintl"
# Add environment variables for system libs
ENV.append "ZLIB_CFLAGS", "-I/usr/include"
ENV.append "ZLIB_LIBS", "-L/usr/lib -lz"
# And finding Homebrew's Python
ENV.append_path "PKG_CONFIG_PATH", "#{HOMEBREW_PREFIX}/Frameworks/Python.framework/Versions/2.7/lib/pkgconfig/"
ENV.prepend "LDFLAGS", "-L#{%x(python-config --prefix).chomp}/lib"
# Reset ARCHFLAGS to match how we build
ENV["ARCHFLAGS"] = "-arch #{MacOS.preferred_arch}"
# Bootstrap in every build. See the link below.
system "./bootstrap" #https://github.com/fontforge/fontforge/issues/1806
system "./configure", *args
system "make"
system "make", "install"
# Link this to enable symlinking into /Applications with brew linkapps.
# The name is case-sensitive. It breaks without both F's capitalised.
ln_s "#{share}/fontforge/osx/FontForge.app", prefix
end
test do
system "#{bin}/fontforge", "-version"
end
end