summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatt Kline2017-04-05 22:53:54 -0700
committerMatt Kline2017-04-05 22:59:05 -0700
commit71a2b00eead64e46f2d2c82059f5067d1a06fdb7 (patch)
treee20ee1e82945359d9b1ed351773eb6806fccc959
downloadaur-71a2b00eead64e46f2d2c82059f5067d1a06fdb7.tar.gz
Initial package version (STIX 2.0.0)
-rw-r--r--.SRCINFO15
-rw-r--r--.gitignore4
-rw-r--r--PKGBUILD18
3 files changed, 37 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..338f2dfdfbda
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,15 @@
+# Generated by mksrcinfo v8
+# Thu Apr 6 05:59:01 UTC 2017
+pkgbase = otf-stix
+ pkgdesc = An OpenType font with math support, designed for scientific and engineering printing
+ pkgver = 2.0.0
+ pkgrel = 1
+ url = http://www.stixfonts.org
+ arch = any
+ license = custom:OFL
+ depends = fontconfig
+ source = https://sourceforge.net/projects/stixfonts/files/Current%20Release/STIXv2.0.0.zip
+ sha256sums = 6fac297b27c78891aeca9adb37be54729932e57cdcdb218a9e163671c163d938
+
+pkgname = otf-stix
+
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 000000000000..f1266b78fb51
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,4 @@
+pkg/
+src/
+STIX*.zip
+otf-stix-*.xz
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..bf0459732727
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,18 @@
+pkgname=otf-stix
+pkgver=2.0.0
+pkgrel=1
+pkgdesc="An OpenType font with math support, designed for scientific and engineering printing"
+arch=('any')
+url="http://www.stixfonts.org"
+license=('custom:OFL')
+depends=('fontconfig')
+source=("https://sourceforge.net/projects/stixfonts/files/Current%20Release/STIXv$pkgver.zip")
+sha256sums=('6fac297b27c78891aeca9adb37be54729932e57cdcdb218a9e163671c163d938')
+
+package() {
+ cd "$srcdir/STIXv$pkgver"
+
+ install -d "$pkgdir/usr/share/fonts/OTF"
+ install -m644 Fonts/OTF/*.otf "$pkgdir/usr/share/fonts/OTF/"
+ install -Dm644 "docs/STIX_${pkgver}_license.pdf" "$pkgdir/usr/share/licenses/$pkgname/OFL.pdf"
+}