mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
62 lines
1.8 KiB
Bash
62 lines
1.8 KiB
Bash
# Contributor: 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 32-bit ARM
|
|
|
|
pkgname=ruby2.7
|
|
pkgver=2.7.3
|
|
pkgrel=1
|
|
arch=(x86_64)
|
|
pkgdesc='An object-oriented language for quick and easy programming, version 2.7'
|
|
url='https://www.ruby-lang.org/en/'
|
|
license=(BSD custom)
|
|
depends=(libxcrypt gdbm openssl libffi libyaml gmp zlib)
|
|
optdepends=(
|
|
'tk: for Ruby/TK'
|
|
)
|
|
makedepends=(tk)
|
|
options=(!emptydirs)
|
|
source=(https://cache.ruby-lang.org/pub/ruby/${pkgver:0:3}/ruby-${pkgver}.tar.xz
|
|
0001-Use-only-unsigned-long-for-rb_serial_t.patch)
|
|
sha512sums=('b755d418b3bab2f9f6a8893afd13869269f17065643dde78b9e85ae3538a6d0617893db6e9c3908e00a40c7577a5c912a7c822d8f245cdcfb857be76dfb66c1e'
|
|
'ae1a9e00ab3bfb1bf29cda872ddf6d64dd6ec5745bd25f00e3692a1d769dd81bbce8921ed63e0f5776ec3e610655087b739fde26ede9649c6c2e095b27381926')
|
|
|
|
prepare() {
|
|
cd ruby-${pkgver}
|
|
# fixes https://bugs.ruby-lang.org/issues/9507
|
|
[[ $CARCH == 'arm' ]] && patch -Np1 -i ../0001-Use-only-unsigned-long-for-rb_serial_t.patch || true
|
|
}
|
|
|
|
build() {
|
|
cd ruby-${pkgver}
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--program-suffix=-2.7 \
|
|
--with-soname=ruby-2.7 \
|
|
--sysconfdir=/etc \
|
|
--localstatedir=/var \
|
|
--sharedstatedir=/var/lib \
|
|
--libexecdir=/usr/lib/ruby \
|
|
--enable-shared \
|
|
--disable-rpath \
|
|
--with-dbm-type=gdbm_compat \
|
|
--disable-install-doc
|
|
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd ruby-${pkgver}
|
|
|
|
make DESTDIR="${pkgdir}" install-nodoc
|
|
|
|
install -D -m644 COPYING "${pkgdir}/usr/share/licenses/ruby2.7/LICENSE"
|
|
install -D -m644 BSDL "${pkgdir}/usr/share/licenses/ruby2.7/BSDL"
|
|
|
|
# remove files conflicting with 'ruby' package
|
|
rm -r "$pkgdir"/usr/share/man/
|
|
}
|