summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorJens John2015-09-16 14:46:05 +0200
committerJens John2015-09-16 14:46:05 +0200
commit7a7fabaf0641617986a3dec94a9d3f0f6f520364 (patch)
treebcdd46c2b9c0b349e4bd010ee071031e3dadbfb8
downloadaur-7a7fabaf0641617986a3dec94a9d3f0f6f520364.tar.gz
Initial package
-rw-r--r--.SRCINFO12
-rw-r--r--PKGBUILD17
2 files changed, 29 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..9dd3e0721a43
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,12 @@
+pkgbase = ttf-din1451
+ pkgdesc = Clone of the DIN1451 font as used on German roadsigns
+ pkgver = 20100402
+ pkgrel = 1
+ url = https://https://github.com/2ion/ttf-din1451
+ arch = any
+ license = custom:unknown
+ source = https://github.com/2ion/ttf-din1451/archive/20100402.tar.gz
+ sha256sums = a36834c573c4504e088d90ce2f85237a015ee69a15412612e7e6a109fef7ac29
+
+pkgname = ttf-din1451
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..d4f3c7ed1930
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,17 @@
+# Maintainer: 2ion
+pkgname=ttf-din1451
+pkgver=20100402
+pkgrel=1
+pkgdesc='Clone of the DIN1451 font as used on German roadsigns'
+arch=('any')
+url="https://https://github.com/2ion/ttf-din1451"
+license=('custom:unknown')
+source=("https://github.com/2ion/ttf-din1451/archive/${pkgver}.tar.gz")
+sha256sums=('a36834c573c4504e088d90ce2f85237a015ee69a15412612e7e6a109fef7ac29')
+
+package() {
+ cd "$pkgname-$pkgver/postprocessed"
+ for fontfile in *.ttf; do
+ install -Dm644 "$fontfile" "${pkgdir}/usr/share/fonts/${pkgname}/${fontfile}"
+ done
+}