summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatt Kline2017-04-05 23:06:54 -0700
committerMatt Kline2017-04-05 23:08:56 -0700
commit566d8c31e0460b93c5579befac2075e649ebb007 (patch)
tree2dda2c9236c1085950d0d03c1932f1cfb8348b31
parent05318643fe98314c773e06a6f088631fd172f405 (diff)
downloadaur-566d8c31e0460b93c5579befac2075e649ebb007.tar.gz
Package release 4
- Remove install scripts in favor of pacman hooks. (These didn't exist last time this package was updated.) - Switch from MD5 to SHA256 for checksum.
-rw-r--r--.SRCINFO7
-rw-r--r--PKGBUILD5
-rw-r--r--otf-xits.install15
3 files changed, 5 insertions, 22 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 91ee9c46dc2e..9235aa114767 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,18 +1,17 @@
# Generated by mksrcinfo v8
-# Thu Jan 14 03:46:48 UTC 2016
+# Thu Apr 6 06:06:35 UTC 2017
pkgbase = otf-xits
pkgdesc = An OpenType implementation of STIX fonts with math support
pkgver = 1.108
- pkgrel = 3
+ pkgrel = 4
url = https://github.com/khaledhosny/xits-math
- install = otf-xits.install
arch = any
license = custom:OFL
depends = fontconfig
depends = xorg-fonts-encodings
depends = xorg-font-utils
source = https://github.com/khaledhosny/xits-math/archive/v1.108.tar.gz
- md5sums = 6a9ff635ecc47edc0c13794f2b2a8ce1
+ sha256sums = ec0742b7291ab96df28188e92fdf1293006a538267edc2b282d6615923833ceb
pkgname = otf-xits
diff --git a/PKGBUILD b/PKGBUILD
index 34c367d4d26b..0b6245f2b288 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,15 +1,14 @@
pkgname=otf-xits
pkgver=1.108
-pkgrel=3
+pkgrel=4
pkgdesc="An OpenType implementation of STIX fonts with math support"
arch=('any')
url="https://github.com/khaledhosny/xits-math"
license=('custom:OFL')
depends=('fontconfig' 'xorg-fonts-encodings' 'xorg-font-utils')
-install=otf-xits.install
ghname=xits-math
source=("https://github.com/khaledhosny/$ghname/archive/v$pkgver.tar.gz")
-md5sums=('6a9ff635ecc47edc0c13794f2b2a8ce1')
+sha256sums=('ec0742b7291ab96df28188e92fdf1293006a538267edc2b282d6615923833ceb')
package() {
cd "$srcdir/$ghname-$pkgver"
diff --git a/otf-xits.install b/otf-xits.install
deleted file mode 100644
index 0476998b74dc..000000000000
--- a/otf-xits.install
+++ /dev/null
@@ -1,15 +0,0 @@
-post_install() {
- echo -n "Updating font cache... "
- fc-cache -s >/dev/null
- mkfontscale /usr/share/fonts/OTF
- mkfontdir /usr/share/fonts/OTF
- echo "done."
-}
-
-post_upgrade() {
- post_install $1
-}
-
-post_remove() {
- post_install $1
-}