Skip to content

kazesawa/kazesawa

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
out
 
 
 
 
 
 
 
 
 
 
 
 

Kazesawa Font

Sample

紹介スライド: Introducing Kazewasa Font

ダウンロード

以下の方法がおすすめです:

master ブランチの zip をダウンロードした場合は、フォント本体は out/ ディレクトリ内にあります。

OS X ユーザの場合は、以下の様なワンライナーを端末で実行することで最新のものを $HOME/Library/Fonts にインストールできます:

pushd $(pwd) && cd $TMPDIR && curl -LO $(curl -i 'https://github.com/kazesawa/kazesawa/releases/latest/' | tr -d $'\r' | grep Location | head -n1 | awk '{print $2}' | sed -e 's|/releases/tag/|/releases/download/|' -e 's|$|/kazesawa.zip|') && unzip kazesawa.zip '*.ttf' -d $HOME/Library/Fonts/ && rm kazesawa.zip && popd

Linux などでも同様のことが可能です:

mkdir $HOME/.fonts $$ pushd $(pwd) && cd /tmp && curl -LO $(curl -i 'https://github.com/kazesawa/kazesawa/releases/latest/' | tr -d $'\r' | grep Location | head -n1 | awk '{print $2}' | sed -e 's|/releases/tag/|/releases/download/|' -e 's|$|/kazesawa.zip|') && unzip kazesawa.zip '*.ttf' -d $HOME/.fonts/ && rm kazesawa.zip && fc-cache -fv && popd

ビルド方法

$ git clone https://github.com/kazesawa/kazesawa && cd kazesawa
$ make fetch_deps
$ make ttf # built fonts are in out/
$ make zip # optional: creates .zip for distribution

or

$ git clone https://github.com/kazesawa/kazesawa && cd kazesawa
$ make fresh