summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorCaleb Maclennan2020-02-24 08:45:02 +0300
committerCaleb Maclennan2020-02-24 08:45:18 +0300
commit578c4f9764e9273cc7ac6f67736a14d076fcaf66 (patch)
tree7d6fea5c2f563c62475eab0b56ecf3d1e8979014
parent38bbf19bdd7255da379b27df38a936bad7f0535e (diff)
downloadaur-578c4f9764e9273cc7ac6f67736a14d076fcaf66.tar.gz
Update upstream source, package licence and documentation
-rw-r--r--.SRCINFO11
-rw-r--r--PKGBUILD16
2 files changed, 13 insertions, 14 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 19496d6b5835..53f77c10f2bd 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,14 +1,13 @@
pkgbase = otf-libertinus
- pkgdesc = The Libertinus font family. A fork of the Linux Libertine and Linux Biolinum fonts with bugfixes and an OpenType math companion.
+ pkgdesc = The Libertinus font family, a fork of Linux Libertine and Biolinum with OpenType math
pkgver = 6.10
- pkgrel = 1
- url = https://github.com/libertinus-fonts/libertinus
+ pkgrel = 2
+ url = https://github.com/alif-type/libertinus
arch = any
- license = custom: OFL
- depends = fontconfig
+ license = OFL
conflicts = otf-libertine-git
conflicts = otf-libertinus-git
- source = https://github.com/libertinus-fonts/libertinus/releases/download/v6.10/libertinus-6.10.zip
+ source = https://github.com/alif-type/libertinus/releases/download/v6.10/libertinus-6.10.zip
sha256sums = 54cd1eedb95c67a4679a00ad2e2144c82395fc39cbcbf0ca88ea6dd1da4d5498
pkgname = otf-libertinus
diff --git a/PKGBUILD b/PKGBUILD
index 51f800f5dadc..dda9d165c1ab 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -4,18 +4,18 @@
pkgname=otf-libertinus
_pkgname="${pkgname#*-}"
pkgver=6.10
-pkgrel=1
-pkgdesc='The Libertinus font family. A fork of the Linux Libertine and Linux Biolinum fonts with bugfixes and an OpenType math companion.'
-depends=('fontconfig')
+pkgrel=2
+pkgdesc='The Libertinus font family, a fork of Linux Libertine and Biolinum with OpenType math'
conflicts=('otf-libertine-git' 'otf-libertinus-git')
arch=('any')
-license=('custom: OFL')
-url='https://github.com/libertinus-fonts/libertinus'
-source=("https://github.com/libertinus-fonts/$_pkgname/releases/download/v$pkgver/$_pkgname-$pkgver.zip")
+license=('OFL')
+url="https://github.com/alif-type/$_pkgname"
+source=("https://github.com/alif-type/$_pkgname/releases/download/v$pkgver/$_pkgname-$pkgver.zip")
sha256sums=('54cd1eedb95c67a4679a00ad2e2144c82395fc39cbcbf0ca88ea6dd1da4d5498')
package() {
cd "${_pkgname^}-$pkgver"
- find . -name '*.otf' -execdir install -Dm644 {} "$pkgdir"/usr/share/fonts/OTF/{} \;
- install -Dm644 OFL.txt "$pkgdir/usr/share/licenses/$pkgname/OFL"
+ install -Dm644 -t "$pkgdir/usr/share/fonts/OTF/" ${_pkgname^}*.otf
+ install -Dm644 -t "$pkgdir/usr/share/licenses/$pkgname" OFL.txt AUTHORS.txt
+ install -Dm644 -t "$pkgdir/usr/share/doc/$pkgname/" FONTLOG.txt documentation/*
}