462e-fonts 1.0 — polices Sansation, Quicksand, Aldrich, Orbitron (SIL OFL 1.1)

This commit is contained in:
Jonathan Roth 2026-06-12 18:49:32 +02:00
commit 1dd140e9e5
18 changed files with 68 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
*.deb

View File

@ -0,0 +1,9 @@
Package: 462e-fonts
Version: 1.0
Section: fonts
Priority: optional
Architecture: all
Maintainer: Jonathan Roth <jr@462eng.fr>
Description: Polices 462eng (Sansation, Quicksand, Aldrich, Orbitron)
Polices TTF Sansation, Quicksand, Aldrich et Orbitron (SIL OFL 1.1)
utilisees par les applications 462eng (labels GD, PDF, interfaces).

View File

@ -0,0 +1,4 @@
#!/bin/sh
set -e
if command -v fc-cache >/dev/null 2>&1; then fc-cache -f >/dev/null 2>&1 || true; fi
exit 0

View File

@ -0,0 +1,23 @@
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: 462e-fonts
Files: usr/share/fonts/truetype/Sansation-*.ttf
Copyright: 2011 Bernd Montag, Reserved Font Name "Sansation"
License: OFL-1.1
Files: usr/share/fonts/truetype/Quicksand-*.ttf
Copyright: 2019 The Quicksand Project Authors, Reserved Font Name "Quicksand"
License: OFL-1.1
Files: usr/share/fonts/truetype/Aldrich-*.ttf
Copyright: The Aldrich Project Authors
License: OFL-1.1
Files: usr/share/fonts/truetype/Orbitron-*.ttf
Copyright: The Orbitron Project Authors
License: OFL-1.1
License: OFL-1.1
This Font Software is licensed under the SIL Open Font License,
Version 1.1. The full license text is available with a FAQ at:
https://scripts.sil.org/OFL

Binary file not shown.

Binary file not shown.

Binary file not shown.

20
README.md Normal file
View File

@ -0,0 +1,20 @@
# 462e-fonts
Paquet Debian des polices TTF utilisées par les applications 462eng
(génération de labels GD, PDF tcpdf, interfaces) :
- **Sansation** (Bold, BoldItalic, Italic, Light, LightItalic, Regular) — © 2011 Bernd Montag
- **Quicksand** (Medium) — © 2019 The Quicksand Project Authors
- **Aldrich** (Regular) — The Aldrich Project Authors
- **Orbitron** (Regular, Medium, Bold, Black) — The Orbitron Project Authors
Toutes sous licence [SIL Open Font License 1.1](https://scripts.sil.org/OFL).
## Build & publication
```sh
./build.sh
```
Construit `462e-fonts_<version>_all.deb` et le pousse sur le debrepo
(distribution `462eng`, composant `system`).

11
build.sh Normal file
View File

@ -0,0 +1,11 @@
#!/bin/sh
set -e
PKG=462e-fonts
VERSION=$(sed -n 's/^Version: //p' $PKG/DEBIAN/control)
DEB="${PKG}_${VERSION}_all.deb"
rm -f "$DEB"
dpkg-deb --build --root-owner-group "$PKG/" "$DEB"
dpkg-deb -I "$DEB" | sed -n '1,10p'
ssh debrepo -C '(F="$(mktemp)"; cat > $F; reprepro --ignore=extension -Vb /srv/debian/ -C system includedeb 462eng $F; rm -f "$F")' < "$DEB"