summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorÉtienne Deparis2019-04-15 15:17:52 +0200
committerÉtienne Deparis2019-04-15 15:17:52 +0200
commit58f667c959a645af25c9b068d4f9b6ed7337c453 (patch)
treeebd9925378d393d7f1548688de0e16d5e1ae6b7a
downloadaur-58f667c959a645af25c9b068d4f9b6ed7337c453.tar.gz
1.008
-rw-r--r--.SRCINFO20
-rw-r--r--PKGBUILD25
2 files changed, 45 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..696f60e97542
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,20 @@
+# Generated by makepkg 5.1.3
+# Mon Apr 15 13:17:31 UTC 2019
+pkgbase = ttf-b612
+ pkgdesc = An highly legible open source font family designed and tested to be used on aircraft cockpit screens
+ pkgver = 1.008
+ pkgrel = 1
+ url = http://b612-font.com/
+ arch = any
+ license = EPL
+ depends = fontconfig
+ depends = xorg-font-utils
+ provides = ttf-b612
+ provides = ttf-b612-mono
+ conflicts = ttf-b612-git
+ conflicts = ttf-b612-mono
+ source = https://github.com/polarsys/b612/archive/1.008.tar.gz
+ sha256sums = bfe4827931a22ecde5576c2bd06b462d467b89fa580b6ded651346f94eba8dd6
+
+pkgname = ttf-b612
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..6bb7d9a204d3
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,25 @@
+# Maintainer: Étienne Deparis <etienne@depar.is>
+pkgname=ttf-b612
+pkgver=1.008
+pkgrel=1
+pkgdesc="An highly legible open source font family designed and tested to be used on aircraft cockpit screens"
+arch=("any")
+url="http://b612-font.com/"
+license=("EPL")
+depends=(fontconfig xorg-font-utils)
+source=("https://github.com/polarsys/b612/archive/$pkgver.tar.gz")
+sha256sums=('bfe4827931a22ecde5576c2bd06b462d467b89fa580b6ded651346f94eba8dd6')
+provides=("ttf-b612" "ttf-b612-mono")
+conflicts=("ttf-b612-git" "ttf-b612-mono")
+
+package() {
+ cd $srcdir/b612-$pkgver
+ install -d -m755 "$pkgdir/usr/share/licenses/$_pkgname"
+ install -D -m644 edl-v10.html "$pkgdir/usr/share/licenses/$_pkgname/edl-v10.html"
+ install -D -m644 EPL-2.0.html "$pkgdir/usr/share/licenses/$_pkgname/EPL-2.0.html"
+ install -D -m644 OFL.txt "$pkgdir/usr/share/licenses/$_pkgname/OFL.txt"
+
+ install -d -m755 "$pkgdir/usr/share/fonts/TTF"
+ cd fonts/ttf
+ find . -name "*.ttf" -exec install -D -m644 "{}" "$pkgdir/usr/share/fonts/TTF/{}" \;
+}