use bundler and document how to build these fonts

This commit is contained in:
Suraj N. Kurapati 2013-10-21 17:21:01 -07:00
parent 52ba3a0f9f
commit 97d850f89b
3 changed files with 37 additions and 1 deletions

3
Gemfile Normal file
View File

@ -0,0 +1,3 @@
source 'https://rubygems.org'
gem 'git', '~> 1.2'
gem 'rake', '~> 10.0'

12
Gemfile.lock Normal file
View File

@ -0,0 +1,12 @@
GEM
remote: https://rubygems.org/
specs:
git (1.2.6)
rake (10.1.0)
PLATFORMS
ruby
DEPENDENCIES
git (~> 1.2)
rake (~> 10.0)

View File

@ -3,7 +3,7 @@ Tamzen font
This is [my personal fork][1] of the wonderful [Tamsyn font][2] by Scott Fial.
It is programatically forked from Tamsyn version 1.9 by the `Tamzen.rb` script
(needs `gem install git` library) and diverges from it in the following ways:
(see the "Building" section below) and diverges from it in the following ways:
* Medium "g" is backported from Tamsyn 1.6.
* Medium "h" is backported from Tamsyn 1.6.
@ -122,6 +122,27 @@ alias Tamzen10x20r='font -misc-tamzen-medium-r-normal--20-145-100-100-c-100-iso8
alias Tamzen10x20b='font -misc-tamzen-bold-r-normal--20-145-100-100-c-100-iso8859-1'
```
Building
--------
You can build the Tamzen fonts for yourself by following this procedure.
### Requirements
```sh
sudo apt-get install ruby git imagemagick
gem install bundler
bundle install
```
### Procedure
```sh
bundle exec rake # build things only when necessary
bundle exec rake clobber # destroy everything that we built
bundle exec rake clobber default # rebuild everything from scratch
```
License
-------