summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorShane Stone2018-02-28 15:14:44 -0700
committerShane Stone2018-02-28 15:14:44 -0700
commiteec74f3629956ed07d4467276377064d0e6f6f85 (patch)
tree0d7940b9ff620fbcfc7f2de9cc7afb51a328db75
downloadaur-eec74f3629956ed07d4467276377064d0e6f6f85.tar.gz
ttf-font-linux -> ttf-font-logos; bump version to 0.10
-rw-r--r--.SRCINFO14
-rw-r--r--PKGBUILD20
2 files changed, 34 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..3f490756c812
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,14 @@
+pkgbase = ttf-font-logos
+ pkgdesc = An icon font providing popular Linux distro logos.
+ pkgver = 0.10
+ pkgrel = 1
+ url = https://github.com/lukas-w/font-logos
+ arch = any
+ license = Unilicense
+ depends = fontconfig
+ depends = xorg-font-utils
+ source = ttf-font-logos-0.10.tar.gz::https://github.com/lukas-w/font-logos/archive/v0.10.tar.gz
+ md5sums = 95e3f464c732ffd04c3e1affe476c9c5
+
+pkgname = ttf-font-logos
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..2eea621e3fcf
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,20 @@
+# Maintainer: Shane Stone <shanewstone at gmail>
+
+pkgname=ttf-font-logos
+pkgver=0.10
+pkgrel=1
+pkgdesc="An icon font providing popular Linux distro logos."
+arch=(any)
+url="https://github.com/lukas-w/font-logos"
+license=('Unilicense')
+depends=(fontconfig xorg-font-utils)
+source=("$pkgname-$pkgver.tar.gz::https://github.com/lukas-w/font-logos/archive/v$pkgver.tar.gz")
+md5sums=('95e3f464c732ffd04c3e1affe476c9c5')
+
+package() {
+ cd font-logos-$pkgver/assets
+ install -d "$pkgdir/usr/share/fonts/TTF"
+ install -m644 *.ttf "$pkgdir/usr/share/fonts/TTF"
+ cd ..
+ install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}