summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorkleintux2022-09-23 10:00:24 +0200
committerkleintux2022-09-23 10:00:24 +0200
commitf720b740d10ad58a0771571346d8555ccfe2ea4b (patch)
treebba36684d98f01388b5d2406e33b770b31e565b8
parent6988133264ebc9d70febd61a37fa80c1178a655f (diff)
downloadaur-f720b740d10ad58a0771571346d8555ccfe2ea4b.tar.gz
removed not needed dependencies. fixed some stuff an sum
-rw-r--r--.SRCINFO9
-rw-r--r--PKGBUILD15
2 files changed, 7 insertions, 17 deletions
diff --git a/.SRCINFO b/.SRCINFO
index fc6142aa6711..33891ed04d87 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,18 +1,15 @@
pkgbase = ttf-xo-oriel
pkgdesc = XO Oriel font created considering trends of modern typography from «Новые облачные технологии»
- pkgver = 1.00
+ pkgver = 1.01
pkgrel = 1
url = https://fonts.myoffice.ru
install = ttf-xo-oriel.install
arch = any
groups = ttf-xo-fonts
license = custom: XO FONTS Open License
- makedepends = dos2unix
- makedepends = glibc
depends = fontconfig
depends = xorg-font-utils
- source = XO_Oriel-1.00.zip::http://fonts.myoffice.ru/wp-content/themes/template/fonts_page/files/XO_Oriel.zip
- sha256sums = c4353cff43714a02f03478037a348285b600c284e4573ff950411d9af381c534
+ source = XO_Oriel-1.01.zip::http://fonts.myoffice.ru/wp-content/themes/template/fonts_page/files/XO_Oriel.zip
+ sha256sums = 6de2ce1a34c6e697ba95f9c698674387ae55f39ee26ffcd11a526ce12d285f36
pkgname = ttf-xo-oriel
-
diff --git a/PKGBUILD b/PKGBUILD
index 4a18547ebfcf..25d1b786981e 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,29 +1,22 @@
-# Maintainer: Roman Mikhayloff <rimf@inbox.ru>
+# Maintainer: kleintux <reg-archlinux AT klein DOT tuxli DOT ch>
+# Contributor: Roman Mikhayloff <rimf@inbox.ru>
pkgname=ttf-xo-oriel
-pkgver=1.00 # The fake version, the original is unversioned.
+pkgver=1.01 # The fake version, the original is unversioned.
pkgrel=1
pkgdesc="XO Oriel font created considering trends of modern typography from «Новые облачные технологии»"
arch=('any')
url="https://fonts.myoffice.ru"
license=('custom: XO FONTS Open License')
depends=('fontconfig' 'xorg-font-utils')
-makedepends=('dos2unix' 'glibc')
groups=('ttf-xo-fonts')
source=("XO_Oriel-${pkgver}.zip::http://fonts.myoffice.ru/wp-content/themes/template/fonts_page/files/XO_Oriel.zip")
-sha256sums=('c4353cff43714a02f03478037a348285b600c284e4573ff950411d9af381c534')
+sha256sums=('6de2ce1a34c6e697ba95f9c698674387ae55f39ee26ffcd11a526ce12d285f36')
install=${pkgname}.install
-prepare() {
- iconv -f cp1251 -t utf8 -o LICENSE XO_Fonts_License.txt
- dos2unix LICENSE
-}
-
package() {
install -dm755 "${pkgdir}"/usr/share/fonts/TTF
cd "${srcdir}"
install -m644 *.ttf "${pkgdir}"/usr/share/fonts/TTF/
-
- install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
}