blob: 4bf82b7a04dd5609352c237237ec7c62b76e384f (
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
|
# Maintainer (Arch): Thomas Dziedzic <gostrc@gmail.com>
# Contributor (Arch): Allan McRae <allan@archlinux.org>
# Contributor (Arch): John Proctor <jproctor@prium.net>
# Contributor (Arch): Jeramy Rutley <jrutley@gmail.com>
# Maintainer: Daniel Milewski <niitotantei@riseup.net>
# Maintainer: André Silva <emulatorman@parabola.nu>
pkgname=(ruby ruby-docs)
pkgver=2.3.0
_jsonver=1.8.1
pkgrel=1.parabola1
arch=(i686 x86_64 armv7h)
url='http://www.ruby-lang.org/en/'
license=(BSD custom)
makedepends=(gdbm openssl libffi doxygen graphviz libyaml ttf-dejavu tk)
options=(!emptydirs)
mksource=(http://cache.ruby-lang.org/pub/ruby/${pkgver:0:3}/ruby-${pkgver}.tar.xz
https://github.com/flori/json/archive/v${_jsonver}.tar.gz)
source=(https://repo.parabola.nu/other/ruby-libre/ruby-libre-${pkgver}.tar.xz
json-${_jsonver}.gem
remove-nonfree-json-references.patch
remove-nonfree-ruby-references.patch
gemrc)
mksha1sums=('96e620e38af351c8da63e40cfe217ec79f912ba1'
'043ed2df4b0ce2174c9c020ffcb4ec31f9fde560')
sha1sums=('0310716e25f732f711d023ee76fb7ef51ffdf291'
'2cd288d00c5211e4c9d9338080b30af65cbb143a'
'0ba1010a271e6fcc1734f7382b99963f46133ea5'
'da8bdd298104be19221d5ba5353b992d07943840'
'dc536754c8fac2c3d82965c5a708cd8f79562d98')
mksource() {
rm -rv ruby-${pkgver}/ext/json
rm -rv ruby-${pkgver}/test/json
rm -rv json-${_jsonver}/ext
}
prepare() {
cd ruby-${pkgver}
install -D -m644 ${srcdir}/json-${_jsonver}.gem gems
patch -Np1 -i ${srcdir}/remove-nonfree-ruby-references.patch
cd ${srcdir}/json-${_jsonver}
patch -Np1 -i ${srcdir}/remove-nonfree-json-references.patch
}
build() {
cd ruby-${pkgver}
PKG_CONFIG=/usr/bin/pkg-config ./configure \
--prefix=/usr \
--sysconfdir=/etc \
--localstatedir=/var \
--sharedstatedir=/var/lib \
--libexecdir=/usr/lib/ruby \
--enable-shared \
--disable-rpath \
--with-dbm-type=gdbm_compat
make
}
check() {
cd ruby-${pkgver}
make test
}
package_ruby() {
pkgdesc='An object-oriented language for quick and easy programming, with free variant of json gem'
depends=(gdbm openssl libffi libyaml gmp zlib)
optdepends=(
'ruby-docs: Ruby documentation'
'tk: for Ruby/TK'
)
provides=(rubygems rake)
conflicts=(rake)
backup=(etc/gemrc)
install=ruby.install
cd ruby-${pkgver}
make DESTDIR="${pkgdir}" install-nodoc
install -D -m644 ${srcdir}/gemrc "${pkgdir}/etc/gemrc"
install -D -m644 COPYING "${pkgdir}/usr/share/licenses/ruby/LICENSE"
install -D -m644 BSDL "${pkgdir}/usr/share/licenses/ruby/BSDL"
}
package_ruby-docs() {
pkgdesc='Documentation files for ruby'
cd ruby-${pkgver}
make DESTDIR="${pkgdir}" install-doc install-capi
install -D -m644 COPYING "${pkgdir}/usr/share/licenses/ruby-docs/LICENSE"
install -D -m644 BSDL "${pkgdir}/usr/share/licenses/ruby-docs/BSDL"
}
|