blob: 55f7b899faaabdccd553f9391bfce10b90efbaa5 (
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
|
# Maintainer: Carl Smedstad <carl.smedstad at protonmail dot com>
# Contributor: Anatoly Bashmakov <anatoly at posteo dot net>
pkgname=ruby-prawn
_pkgname=${pkgname#ruby-}
pkgver=2.5.0
pkgrel=2
pkgdesc="A fast and nimble PDF generator for Ruby"
arch=(any)
url="https://github.com/prawnpdf/prawn"
license=(
GPL-2.0-only
GPL-3.0-only
Ruby
)
depends=(
ruby
ruby-matrix
ruby-pdf-core
ruby-ttfunk
)
makedepends=(rubygems)
checkdepends=(
ruby-pdf-inspector
ruby-pdf-reader
ruby-rspec
)
options=(!emptydirs)
source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
sha256sums=('bac8129430cdbbacce401cd5f2e0d2892699763822188bda1cd514e62678a364')
_archive="$_pkgname-$pkgver"
prepare() {
cd "$_archive"
# Update gemspec/Gemfile to allow newer version of the dependencies
sed -i -E 's|~>|>=|g' "$_pkgname.gemspec"
}
build() {
cd "$_archive"
local gemdir="$(gem env gemdir)"
gem build "$_pkgname.gemspec"
gem install \
--local \
--verbose \
--ignore-dependencies \
--no-user-install \
--install-dir "tmp_install/$gemdir" \
--bindir "tmp_install/usr/bin" \
"$_pkgname-$pkgver.gem"
# Remove unrepreducible files
rm --force --recursive --verbose \
"tmp_install/$gemdir/cache/" \
"tmp_install/$gemdir/gems/$_pkgname-$pkgver/vendor/" \
"tmp_install/$gemdir/doc/$_pkgname-$pkgver/ri/ext/"
find "tmp_install/$gemdir/gems/" \
-type f \
\( \
-iname "*.o" -o \
-iname "*.c" -o \
-iname "*.so" -o \
-iname "*.time" -o \
-iname "gem.build_complete" -o \
-iname "Makefile" \
\) \
-delete
find "tmp_install/$gemdir/extensions/" \
-type f \
\( \
-iname "mkmf.log" -o \
-iname "gem_make.out" \
\) \
-delete
}
check() {
cd "$_archive"
# Remove to avoid depending on
# https://github.com/prawnpdf/prawn-manual_builder
rm spec/prawn_manual_spec.rb
# Two failing tests, not sure why
rm spec/prawn/document/security_spec.rb
GEM_HOME="tmp_install/$(gem env gemdir)" rspec
}
package() {
cd "$_archive"
cp -a tmp_install/* "$pkgdir"
install -Dm644 -t "$pkgdir/usr/share/doc/$pkgname" ./*.md
install -Dm644 -t "$pkgdir/usr/share/licenses/$pkgname" \
COPYING LICENSE
}
|