94a48ce753
FontForge will compile with newer Homebrew-built versions of Python, but I have an older one and needed this to work to test Lilypad builds.
47 lines
1.3 KiB
Ruby
47 lines
1.3 KiB
Ruby
require 'formula'
|
|
|
|
class Fontforge < Formula
|
|
url 'http://downloads.sourceforge.net/project/fontforge/fontforge-source/fontforge_full-20110222.tar.bz2'
|
|
head 'git://fontforge.git.sourceforge.net/gitroot/fontforge/fontforge'
|
|
homepage 'http://fontforge.sourceforge.net'
|
|
md5 '5be4dda345b5d73a27cc399df96e463a'
|
|
|
|
depends_on 'pkg-config' => :build
|
|
depends_on 'gettext'
|
|
depends_on 'pango'
|
|
depends_on 'potrace'
|
|
|
|
def options
|
|
[['--without-python', 'Build without Python.']]
|
|
end
|
|
|
|
fails_with_llvm "Compiling cvexportdlg.c fails with error: initializer element is not constant"
|
|
|
|
def install
|
|
args = ["--prefix=#{prefix}", "--enable-double", "--without-freetype-bytecode"]
|
|
args << "--without-python" if ARGV.include? "--without-python"
|
|
|
|
ENV.x11
|
|
# Fix linker error; see: http://trac.macports.org/ticket/25012
|
|
ENV.append "LDFLAGS", "-lintl"
|
|
system "./configure", *args
|
|
|
|
inreplace "Makefile" do |s|
|
|
s.gsub! "/Applications", "$(prefix)"
|
|
s.gsub! "/usr/local/bin", "$(bindir)"
|
|
end
|
|
|
|
system "make"
|
|
system "make install"
|
|
end
|
|
|
|
def caveats; <<-EOS.undent
|
|
fontforge is an X11 application.
|
|
|
|
To install the Mac OS X wrapper application run:
|
|
brew linkapps
|
|
or:
|
|
sudo ln -s #{prefix}/FontForge.app /Applications
|
|
EOS
|
|
end
|
|
end
|