ttf-inconsolata: updated install routine

This commit is contained in:
Tim Biermann 2022-02-14 10:02:25 +01:00
parent 1e43b9c428
commit ee3aa96185
Signed by: tb
GPG Key ID: 42F8B4E30B673606
2 changed files with 6 additions and 4 deletions

View File

@ -1,6 +1,6 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF39XdAb3oEciXM1y/VjCi9tRuQO/nMGzHyXSErShhuil/gmyXiMsS2EyYtJ9YseVyu06N7ZRhmN4BiHX/IPFMtAk=
SHA256 (Pkgfile) = 36b534533b9c224e89330db496faa404532e50ac74da7555d56433357e90ca7c
RWSagIOpLGJF3/pColScPk++l3HhgTs86nLNgmQODkDu5uLUC0VJRzTsJQhehUVhMFbkdDnvdjUyCxJwq+vCURHKzqHqdKqcTg4=
SHA256 (Pkgfile) = 09136a8869273859516b49d8f2e1154e95822b3aca32df5d82dff3d08768fd2e
SHA256 (.footprint) = 298bdd97c881272dbc32bb78718758797d98e6e9c9644ca51ee294edacafe4ac
SHA256 (ttf-inconsolata-3.000.tar.gz) = f2d8d8ba6caa785a966ef17996822ab14ba91ec423431a29e1b6c4b14bc4cda5
SHA256 (75-ttf-inconsolata.conf) = f29a1b45c96ee05e64c03181b587f48a5d090839b7356eb4f48fb752a17a899f

View File

@ -9,7 +9,9 @@ source=(https://github.com/googlefonts/Inconsolata/archive/v$version/$name-$vers
75-ttf-inconsolata.conf)
build() {
install -d $PKG/usr/share/fonts/TTF/Inconsolata
install -Dm644 $SRC/Inconsolata-$version/fonts/ttf/*.ttf $PKG/usr/share/fonts/TTF/Inconsolata/
find Inconsolata-$version/fonts/ttf \
-iname "*.ttf" \
-execdir install -Dm644 {} $PKG/usr/share/fonts/TTF/Inconsolata/{} \;
install -Dm644 $SRC/75-ttf-inconsolata.conf $PKG/usr/share/fontconfig/conf.avail/75-ttf-inconsolata.conf
}