Skip to content

Commit

Permalink
Add googlefonts version 1.0 (Add font Roboto)
Browse files Browse the repository at this point in the history
Create a package googlefonts for fonts from  https://fonts.google.com/.

Install font "Roboto". When other fonts from https://fonts.google.com/
are needed, they can be added to this bee package.

Select only Regular and (Regular) Italic style from the Robot family,
because styles with other weights are shown as separate entries in the
LibreOffice font-selection menu and are not really needed.
  • Loading branch information
donald committed Nov 24, 2020
1 parent d658f32 commit 27a6b92
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions googlefonts.be0
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
#!/usr/bin/env beesh

# BEE_VERSION googlefonts-1.0-0

# more info: https://fonts.google.com/

SRCURL[0]="/src/mariux/download/Roboto.zip"

# PATCHURL+=()

# build_in_sourcedir

# sourcesubdir_append src

#mee_extract() {
# bee_extract "${@}"
#}

#mee_patch() {
# bee_patch "${@}"
#}

#mee_configure() {
# bee_configure
#}

#mee_build() {
# bee_build
#}

mee_install() {
start_cmd mkdir -p $D/usr/share/fonts/truetype
start_cmd cp $S/Roboto-Regular.ttf $D/usr/share/fonts/truetype/
start_cmd cp $S/Roboto-Italic.ttf $D/usr/share/fonts/truetype/
}

#mee_install_post() {
# exit
#}

0 comments on commit 27a6b92

Please sign in to comment.