summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authoryuhr2016-08-03 12:30:59 +0900
committeryuhr2016-08-03 12:30:59 +0900
commit3cb2afe29facec9211b75507c80ac1c9fcbe2adb (patch)
tree7aed106cf423519883c461c28ff06fadac21b792
parent677c9c0719f21bef260e17a751d7e04273ea219e (diff)
downloadaur-3cb2afe29facec9211b75507c80ac1c9fcbe2adb.tar.gz
initial commit
-rw-r--r--.SRCINFO8
-rw-r--r--PKGBUILD13
2 files changed, 15 insertions, 6 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 5588e879b9bd..c821f041733c 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,14 +1,18 @@
# Generated by mksrcinfo v8
-# Wed Aug 3 03:17:17 UTC 2016
+# Wed Aug 3 03:30:24 UTC 2016
pkgbase = ttf-averia-serif-libre
pkgdesc = Averia Serif Libre fonts, typeface a bit gentle from Averia Serif
pkgver = 1.0
pkgrel = 1
+ url = http://iotic.com/averia/
install = ttf-averia-serif-libre.install
arch = any
+ license = GPL
+ license = custom:OFL
depends = fontconfig
+ depends = xorg-fonts-encodings
depends = xorg-font-utils
- source = http://www.1001freefonts.com/d/5521/averia_serif_libre.zip
+ source = ttf-averia-serif-libre-1.0::http://www.1001freefonts.com/d/5521/averia_serif_libre.zip
pkgname = ttf-averia-serif-libre
diff --git a/PKGBUILD b/PKGBUILD
index 15b09c127f1c..abe423f1bbd0 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,12 +2,17 @@ pkgname=ttf-averia-serif-libre
pkgver=1.0
pkgrel=1
pkgdesc="Averia Serif Libre fonts, typeface a bit gentle from Averia Serif"
+url="http://iotic.com/averia/"
+license=('GPL' 'custom:OFL')
arch=('any')
-depends=('fontconfig' 'xorg-font-utils')
-source=('http://www.1001freefonts.com/d/5521/averia_serif_libre.zip')
+depends=('fontconfig' 'xorg-fonts-encodings' 'xorg-font-utils')
+source=(${pkgname}-${pkgver}::'http://www.1001freefonts.com/d/5521/averia_serif_libre.zip')
install=$pkgname.install
package() {
- install -d "$pkgdir/usr/share/fonts/TTF"
- install -m644 "$srcdir/$pkgname/"*.ttf "$pkgdir/usr/share/fonts/TTF/"
+ cd "${srcdir}"
+ install -dm755 "${pkgdir}"/usr/share/fonts/TTF
+ install -m644 *.ttf "${pkgdir}"/usr/share/fonts/TTF/
+
+ install -Dm644 OFL.txt "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}