2014-03-01 19:01:35 +00:00
|
|
|
# Maintainer: Thomas Dziedzic <gostrc@gmail.com>
|
|
|
|
# Contributor: Allan McRae <allan@archlinux.org>
|
|
|
|
# Contributor: John Proctor <jproctor@prium.net>
|
|
|
|
# Contributor: Jeramy Rutley <jrutley@gmail.com>
|
|
|
|
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
|
|
# - patch to fix running ruby on v5 (#705)
|
|
|
|
|
2015-03-03 19:46:19 +00:00
|
|
|
pkgname=(ruby ruby-docs)
|
2018-01-05 20:51:04 +00:00
|
|
|
pkgver=2.5.0
|
2017-09-16 00:16:29 +00:00
|
|
|
pkgrel=1
|
2017-12-18 18:52:36 +00:00
|
|
|
arch=(x86_64)
|
2014-03-01 19:01:35 +00:00
|
|
|
url='http://www.ruby-lang.org/en/'
|
2015-03-03 19:46:19 +00:00
|
|
|
license=(BSD custom)
|
|
|
|
makedepends=(gdbm openssl libffi doxygen graphviz libyaml ttf-dejavu tk)
|
|
|
|
options=(!emptydirs)
|
2016-11-23 00:54:03 +00:00
|
|
|
source=(https://cache.ruby-lang.org/pub/ruby/${pkgver:0:3}/ruby-${pkgver}.tar.xz
|
2015-03-03 19:46:19 +00:00
|
|
|
gemrc
|
|
|
|
0002-Use-only-unsigned-long-for-rb_serial_t.patch)
|
2018-01-05 20:51:04 +00:00
|
|
|
sha1sums=('9c7babcf9e299be3f197d9091024ae458f1a1273'
|
2015-04-13 23:52:24 +00:00
|
|
|
'dc536754c8fac2c3d82965c5a708cd8f79562d98'
|
2014-09-25 01:36:30 +00:00
|
|
|
'21a73f5a6009c038c14119864289d79c16545256')
|
2014-03-01 19:01:35 +00:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd ruby-${pkgver}
|
|
|
|
|
|
|
|
# fixes https://bugs.ruby-lang.org/issues/9507
|
|
|
|
[[ $CARCH == 'arm' ]] && patch -Np1 -i ../0002-Use-only-unsigned-long-for-rb_serial_t.patch
|
|
|
|
|
|
|
|
PKG_CONFIG=/usr/bin/pkg-config ./configure \
|
|
|
|
--prefix=/usr \
|
|
|
|
--sysconfdir=/etc \
|
|
|
|
--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'
|
2015-03-03 19:46:19 +00:00
|
|
|
depends=(gdbm openssl libffi libyaml gmp zlib)
|
2015-01-06 02:06:45 +00:00
|
|
|
optdepends=(
|
|
|
|
'ruby-docs: Ruby documentation'
|
|
|
|
'tk: for Ruby/TK'
|
|
|
|
)
|
2015-03-03 19:46:19 +00:00
|
|
|
provides=(rubygems rake)
|
|
|
|
conflicts=(rake)
|
|
|
|
backup=(etc/gemrc)
|
|
|
|
install=ruby.install
|
2014-03-01 19:01:35 +00:00
|
|
|
|
|
|
|
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"
|
|
|
|
}
|