Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Freefont #145

Merged
merged 1 commit into from
Oct 21, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions extra/src/fonts/freefont.ecmp
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
Loading