Skip to content

Instantly share code, notes, and snippets.

@pathumego
Last active July 15, 2016 13:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pathumego/d6381f4622318827d7afce1ee94761d2 to your computer and use it in GitHub Desktop.
Save pathumego/d6381f4622318827d7afce1ee94761d2 to your computer and use it in GitHub Desktop.
class Fontforgemenus < Formula
desc "Command-line outline and bitmap font editor/converter"
homepage "https://fontforge.github.io"
sha256 "1cc5646fccba2e5af8f1b6c1d0d6d7b6082d9546aefed2348d6c0ed948324796"
head "https://github.com/monkeyiq/fontforge-fork.git", :branch => "2016menus"
option "with-giflib", "Build with GIF support"
option "with-extra-tools", "Build with additional font tools"
deprecated_option "with-gif" => "with-giflib"
# Autotools are required to build from source in all releases.
depends_on "autoconf" => :build
depends_on "automake" => :build
depends_on "pkg-config" => :build
depends_on "libtool" => :run
depends_on "gettext"
depends_on "pango"
depends_on "zeromq"
depends_on "czmq"
depends_on "cairo"
depends_on "fontconfig"
depends_on "libpng" => :recommended
depends_on "jpeg" => :recommended
depends_on "libtiff" => :recommended
depends_on "giflib" => :optional
depends_on "libspiro" => :optional
depends_on :python if MacOS.version <= :snow_leopard
resource "gnulib" do
url "git://git.savannah.gnu.org/gnulib.git",
:revision => "29ea6d6fe2a699a32edbe29f44fe72e0c253fcee"
end
fails_with :llvm do
build 2336
cause "Compiling cvexportdlg.c fails with error: initializer element is not constant"
end
def install
# Don't link libraries to libpython, but do link binaries that expect
# to embed a python interpreter
# https://github.com/fontforge/fontforge/issues/2353#issuecomment-121009759
ENV["PYTHON_CFLAGS"] = `python-config --cflags`.chomp
ENV["PYTHON_LIBS"] = "-undefined dynamic_lookup"
python_libs = `python2.7-config --ldflags`.chomp
inreplace "fontforgeexe/Makefile.am" do |s|
oldflags = s.get_make_var "libfontforgeexe_la_LDFLAGS"
s.change_make_var! "libfontforgeexe_la_LDFLAGS", "#{python_libs} #{oldflags}"
end
# Disable Homebrew detection
# https://github.com/fontforge/fontforge/issues/2425
inreplace "configure.ac", 'test "y$HOMEBREW_BREW_FILE" != "y"', "false"
args = %W[
--prefix=#{prefix}
--disable-silent-rules
--disable-dependency-tracking
--with-pythonbinary=#{which "python2.7"}
--without-x
]
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: https://trac.macports.org/ticket/25012
ENV.append "LDFLAGS", "-lintl"
# Reset ARCHFLAGS to match how we build
ENV["ARCHFLAGS"] = "-arch #{MacOS.preferred_arch}"
# Bootstrap in every build: https://github.com/fontforge/fontforge/issues/1806
resource("gnulib").fetch
system "./bootstrap",
"--gnulib-srcdir=#{resource("gnulib").cached_download}",
"--skip-git"
system "./configure", *args
system "make"
system "make", "install"
# The app here is not functional.
# If you want GUI/App support, check the caveats to see how to get it.
(pkgshare/"osx/FontForge.app").rmtree
if build.with? "extra-tools"
cd "contrib/fonttools" do
system "make"
bin.install Dir["*"].select { |f| File.executable? f }
end
end
end
def caveats; <<-EOS.undent
This formula only installs the command line utilities.
FontForge.app can be downloaded directly from the website:
https://fontforge.github.io
Alternatively, install with Homebrew-Cask:
brew cask install fontforge
EOS
end
test do
system bin/"fontforge", "-version"
system "python", "-c", "import fontforge"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment