homebrew font
1.0.0
$ brew tap sanemat/font
$ brew install ricty
# (generate)
$ cp -f /PATH/TO/RICTY/fonts/Ricty*.ttf ~/Library/Fonts/
$ fc-cache -vf
brew install fontforge中にPythonエラーが発生します以下のように、 brew install fontforge中にエラーが発生した場合:
==> Patching
==> ./bootstrap
==> ./configure --prefix=/Users/sane/.homebrew/Cellar/fontforge/20141230 --disable-silent-rules --without-x --without-giflib --without-libspiro
installed software in a non-standard prefix.
Alternatively, you may set the environment variables PYTHON_CFLAGS
and PYTHON_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details.
以下を実行します。
# Install python before installing fontforge and ricty
brew install python
# Then install fontforge and ricty
brew install ricty
もちろんHomebrewを使用していますが、Homebrew's Pythonは使用していません。 anyenvを介してpyenvを使用します。 HomeBrewビルドスクリプトでは、 PKG_CONFIG_PATHは使用されていません。 HomeBrewのPKG_CONFIG_PATHがあります。このbrew shとprintenv | grep PKG_CONFIG_PATHを試すことができますprintenv | grep PKG_CONFIG_PATH 。
fontforge構成スクリプトはpyenvのpythonを検出しません(私はまだAutoconfを持っている人ではありませんが、申し訳ありません)。これがシステムPythonを検出しない理由がわかりません( pyenv global systemを実行した後)。
以下はbrew install fontforge --verbose --debug debugのデバッグ出力です。
detected a homebrew build environment
./configure: line 18044: /Users/sane/.homebrew/bin/python: No such file or directory
./configure: line 18045: cd: /../../pkgconfig: No such file or directory
found python pkg_config information:
./configure: line 18048: y: command not found
checking for a Python interpreter with version >= 2.7... python
checking for python... /Users/sane/.anyenv/envs/pyenv/versions/2.7.6/bin/python
checking for python version... 2.7
checking for python platform... darwin
checking for python script directory... ${prefix}/lib/python2.7/site-packages
checking for python extension module directory... ${exec_prefix}/lib/python2.7/site-packages
checking for PYTHON... no
configure: error: Package requirements (python-"2.7") were not met:
No package 'python-2.7' found
Consider adjusting the PKG_CONFIG_PATH environment variable if you
installed software in a non-standard prefix.
Alternatively, you may set the environment variables PYTHON_CFLAGS
and PYTHON_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details.
実際のソリューションはここでシステムPythonを検出することですが、これをまだ検出する方法はわかりません。