1
1
mirror of https://github.com/i-tu/Hasklig.git synced 2024-09-11 10:36:46 +03:00
Hasklig/README.md

72 lines
1.8 KiB
Markdown
Raw Normal View History

# Source Code Pro
2012-08-10 03:14:03 +04:00
2019-09-06 02:52:06 +03:00
[Source Code Pro](http://adobe-fonts.github.io/source-code-pro/)
is a set of OpenType fonts that have been designed to work well
in user interface (UI) environments.
2012-09-21 04:06:26 +04:00
2019-09-06 02:52:06 +03:00
## Getting involved
[Open an issue](https://github.com/adobe-fonts/source-code-pro/issues) or send a suggestion to Source Code's designer [Paul D. Hunt](mailto:opensourcefonts@adobe.com?subject=[GitHub]%20Source%20Code%20Pro), for consideration.
## Releases
2014-08-27 22:30:48 +04:00
* [Latest release](../../releases/latest)
* [All releases](../../releases)
2014-08-27 22:30:48 +04:00
## Building the fonts from source
### Requirements
To build the binary font files from source, you need to have installed the
2019-09-06 02:52:06 +03:00
[Adobe Font Development Kit for OpenType](https://github.com/adobe-type-tools/afdko/) (AFDKO).
### Building one font
2019-09-06 02:52:06 +03:00
The key to building the OTF fonts is `makeotf`, which is part of the AFDKO toolset.
Information and usage instructions can be found by executing `makeotf -h`. The TTFs
are generated with the `otf2ttf` and `ttfcomponentizer` tools.
2019-09-06 02:52:06 +03:00
Commands to build the Regular style OTF font:
```sh
$ cd Roman/Instances/Regular/
2019-09-06 02:52:06 +03:00
$ makeotf -r -gs -omitMacNames
```
Commands to generate the Regular style TTF font:
```sh
$ otf2ttf SourceCodePro-Regular.otf
$ ttfcomponentizer SourceCodePro-Regular.ttf
```
2019-09-06 02:52:06 +03:00
### Building all non-variable fonts
2019-09-06 02:52:06 +03:00
For convenience, a shell script named **build.sh** is provided in the root directory.
It builds all OTFs and TTFs, and can be executed by typing:
```sh
$ ./build.sh
```
2015-08-31 21:16:10 +03:00
or this on Windows:
```sh
> build.cmd
```
2019-09-06 02:52:06 +03:00
### Building the variable fonts
To build the variable TTFs you must install **fontmake** using this command:
2019-09-06 02:52:06 +03:00
```sh
$ pip install fontmake
```
2012-12-07 08:09:16 +04:00
2019-09-06 02:52:06 +03:00
A shell script named **buildVFs.sh** is provided in the root directory.
It generates four variable fonts (two CFF2-OTFs and two TTFs), and can be executed by typing:
2019-09-06 02:52:06 +03:00
```sh
$ ./buildVFs.sh
```