-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #145 from AleksArt000/FreeFont
Freefont
- Loading branch information
Showing
1 changed file
with
31 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
[info] | ||
name = freefont | ||
version = 20080323 | ||
url = https://ftpmirror.gnu.org/gnu/freefont/ | ||
type = src | ||
|
||
[files] | ||
freefont-otf-20080323.zip https://ftpmirror.gnu.org/gnu/freefont/freefont-otf-20080323.zip c41a7907907776ec485d43a78c3fc2e1329630f64f22e2276ae6974ff8a35f4b | ||
freefont-ttf-20051206.tar.gz https://ftpmirror.gnu.org/gnu/freefont/freefont-ttf-20051206.tar.gz 247af4ab5be736df63d9572665ea341251e8afaf924f384ddcb18c3549113ed3 | ||
|
||
[description] | ||
This set of fonts covers many non-CJK characters | ||
|
||
[dependencies] | ||
fontconfig | ||
|
||
[download] | ||
mkdir freefont-20080323 | ||
cd freefont-20080323 | ||
unzip -j ../freefont-otf-20080323.zip | ||
tar -xzf ../freefont-ttf-20051206.tar.gz --strip-components=1 | ||
|
||
[install] | ||
mkdir -p $BUILD_ROOT/usr/share/fonts/opentype/freefont | ||
mkdir -p $BUILD_ROOT/usr/share/fonts/truetype/freefont | ||
install -v -m644 *.otf $BUILD_ROOT/usr/share/fonts/opentype/freefont | ||
install -v -m644 *.ttf $BUILD_ROOT/usr/share/fonts/truetype/freefont | ||
|
||
[special] | ||
fc-cache -v /usr/share/fonts/opentype/freefont | ||
fc-cache -v /usr/share/fonts/truetype/freefont |