diff options
author | André Fabian Silva Delgado <emulatorman@parabola.nu> | 2015-05-22 05:54:33 -0300 |
---|---|---|
committer | André Fabian Silva Delgado <emulatorman@parabola.nu> | 2015-05-22 05:54:33 -0300 |
commit | 4774a572775b8c44d86bd8696d17d2205a473ac5 (patch) | |
tree | 4b17743b5e17e171eda55359ed5737da589b6ed9 /pcr/otf-stix/PKGBUILD | |
parent | 3cc4685abd608cb86ac3beca4501a77e00c6d5be (diff) | |
parent | 1a4554480341083f8a1240431c12ebe267843ecd (diff) |
Merge branch 'master' of ssh://projects.parabola.nu/~git/abslibre
Diffstat (limited to 'pcr/otf-stix/PKGBUILD')
-rw-r--r-- | pcr/otf-stix/PKGBUILD | 26 |
1 files changed, 9 insertions, 17 deletions
diff --git a/pcr/otf-stix/PKGBUILD b/pcr/otf-stix/PKGBUILD index 8fe871305..cb7187fcc 100644 --- a/pcr/otf-stix/PKGBUILD +++ b/pcr/otf-stix/PKGBUILD @@ -1,37 +1,29 @@ # Maintainer (Arch): ezzetabi <ezzetabi at gawab dot com> # Maintainer: Alon Ivtsan <alonivtsan@lavabit.com> -# taken from https://aur.archlinux.org/packages/otf-stix/ pkgname=otf-stix -pkgver=1.1.0 -#_pkgver=${pkgver//_/-} -pkgrel=2 -epoch=2 -pkgdesc='A comprehensive set of fonts that serve the scientific and -engineering community.' +pkgver=1.1.1_webfonts +_pkgver=${pkgver//_/-} +pkgrel=1 +epoch=3 +pkgdesc='A comprehensive set of fonts that serve the scientific and engineering community.' arch=('any') url="http://www.stixfonts.org" -license=('Custom: OFL') +license=('custom:STIXFont') depends=('fontconfig' 'xorg-fonts-encodings' 'xorg-font-utils') makedepends=('unzip') install=otf-stix.install -source=("http://downloads.sourceforge.net/stixfonts/STIXv$pkgver.zip" +source=("http://downloads.sourceforge.net/stixfonts/STIXv$_pkgver.zip" 'http://www.stixfonts.org/STIXFontLicense2010.txt') -build() { - /bin/true -} - package() { cd "$srcdir" install -m755 -d "$pkgdir/usr/share/fonts/OTF" - install -m644 Fonts/STIX-General/*.otf "$pkgdir/usr/share/fonts/OTF" - install -m644 Fonts/STIX-Word/*.otf "$pkgdir/usr/share/fonts/OTF" + install -m644 ./STIX-MathJax/otf/*.otf "$pkgdir/usr/share/fonts/OTF" install -Dm644 "$srcdir"/STIXFontLicense2010.txt \ "$pkgdir"/usr/share/licenses/"$pkgname"/license.txt } -md5sums=('e5ebc8ef9b7df0f0bac0fd90bce95295' +md5sums=('5673808f48b1e5ab77064a3585866aab' 'b1af7bbd3cea93a60bf68cf571ad6cab') - |