blob: 58e7dbcd74cdb60bd13bd3dc16ff246fe0603f4a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
# Contributor: Jakub Jirutka <jakub@jirutka.cz>
# Maintainer: Jakub Jirutka <jakub@jirutka.cz>
pkgname=ruby-mathematical
_gemname=${pkgname#ruby-}
pkgver=1.6.11
pkgrel=1
pkgdesc="Convert mathematical equations to SVGs, PNGs, or MathML"
url="https://www.gjtorikian.com/mathematical/"
arch="all"
license="MIT"
depends="ruby ruby-enum"
makedepends="cmake lasem-dev mtex2mml-dev ruby-dev"
checkdepends="mtex2mml-fixtures ruby-io-console ruby-irb ruby-minitest
ruby-nokogiri ruby-rake"
source="$pkgname-$pkgver.tar.gz::https://github.com/gjtorikian/$_gemname/archive/v$pkgver.tar.gz
use-system-mtex2mml-fixtures.patch"
builddir="$srcdir/$_gemname-$pkgver"
prepare() {
default_prepare
# Don't load bundler, it messes with GEM_PATH.
sed -i "/^require\s*[\"']bundler\/setup/d" test/test_helper.rb
# Some tests in this file are unstable (randomly fails).
# https://github.com/gjtorikian/mathematical/issues/73
rm test/mathematical/delimiters_test.rb
}
build() {
cd "$builddir"
gem build $_gemname.gemspec
gem install --local \
--install-dir dist \
--ignore-dependencies \
--no-document \
--verbose \
$_gemname -- \
--use-system-lasem \
--use-system-mtex2MML
}
check() {
local dev_deps
cd "$builddir"
# Install missing development dependencies needed and used only for running
# tests. We can't install them easily with bundler, because there's
# no way how to force it to NOT update already satisifed dependencies.
# We can't install them directly with gem either, because there's no
# way how to force it to instally only dependencies, not the gem itself.
dev_deps=$(gem install --explain --development --minimal-deps $_gemname-$pkgver.gem \
| head -n -1 | sed -En 's/-([^-]+)$/:\1/p')
gem install --instal-dir=.gem --conservative $dev_deps
GEM_PATH='dist:.gem' ruby -S rake test
}
package() {
local gemdir="$pkgdir/$(ruby -e 'puts Gem.default_dir')"
cd "$builddir"/dist
mkdir -p "$gemdir"
cp -r extensions gems specifications "$gemdir"/
# Remove unnecessary files and rubbish...
find "$gemdir"/extensions/ -name mkmf.log -delete
cd "$gemdir"/gems/$_gemname-$pkgver
rm -r ext/ test/ Rakefile *.md *.txt || true
}
sha512sums="d5f5d4768a3b21eaebe5b3c43541ed330eeb9ae4748d583367bf276f0532df9017f6c81793bc3315f459af8bfabd71269955ac2ad0c32b8c15d16dbbdce97ac0 ruby-mathematical-1.6.11.tar.gz
35c691b2006e6c0bac26ebb0adac5ffa99fbc37100c94d5978508b91b3df84544e4fc8fa38b5de01ae0fcc644c1eeb97b6129f59b4488b467c1ded468277c400 use-system-mtex2mml-fixtures.patch"
|