mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
103 lines
3.3 KiB
Bash
103 lines
3.3 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=(ruby ruby-docs)
|
|
pkgver=2.7.1
|
|
pkgrel=2
|
|
arch=(x86_64)
|
|
url='https://www.ruby-lang.org/en/'
|
|
license=(BSD custom)
|
|
makedepends=(gdbm openssl libffi doxygen graphviz libyaml ttf-dejavu 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=('79f98b1ea98e0b10ec79da1883e8fc84d48ffe5c09ae945cbebde94365e35a589d919aac965f74d70ca7e21370ecee631ac5a8f9c4eac61d62f5aa629f27bf31'
|
|
'ae1a9e00ab3bfb1bf29cda872ddf6d64dd6ec5745bd25f00e3692a1d769dd81bbce8921ed63e0f5776ec3e610655087b739fde26ede9649c6c2e095b27381926')
|
|
|
|
prepare() {
|
|
cd ruby-${pkgver}
|
|
# remove bundled gems, we are going to ship them as separate packages
|
|
rm -rf gems/
|
|
# 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 \
|
|
--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'
|
|
depends=(gdbm openssl libffi libyaml gmp zlib rubygems ruby-irb)
|
|
optdepends=(
|
|
'ruby-docs: Ruby documentation'
|
|
'tk: for Ruby/TK'
|
|
)
|
|
|
|
cd ruby-${pkgver}
|
|
|
|
make DESTDIR="${pkgdir}" install-nodoc
|
|
|
|
install -D -m644 COPYING "${pkgdir}/usr/share/licenses/ruby/LICENSE"
|
|
install -D -m644 BSDL "${pkgdir}/usr/share/licenses/ruby/BSDL"
|
|
|
|
rubyver=${pkgver:0:3}.0
|
|
|
|
# remove rubygems as it shipped as a separate package
|
|
rm -r "${pkgdir}"/usr/lib/ruby/${rubyver}/{rubygems,rubygems.rb}
|
|
rm "${pkgdir}"/usr/bin/gem
|
|
|
|
# remove bundler as it shipped as a separate package
|
|
rm -r "${pkgdir}"/usr/lib/ruby/${rubyver}/{bundler,bundler.rb}
|
|
rm "${pkgdir}"/usr/bin/{bundle,bundler}
|
|
rm "${pkgdir}"/usr/lib/ruby/gems/${rubyver}/specifications/default/bundler-*.gemspec
|
|
rm "${pkgdir}"/usr/share/man/man1/{bundle,bundle-*}.1
|
|
|
|
# remove bundled rdoc gem
|
|
rm -r "${pkgdir}"/usr/lib/ruby/${rubyver}/{rdoc,rdoc.rb}
|
|
rm "${pkgdir}"/usr/bin/{rdoc,ri}
|
|
rm "${pkgdir}"/usr/lib/ruby/gems/${rubyver}/specifications/default/rdoc-*.gemspec
|
|
|
|
# remove irb as it is a separate package now
|
|
rm -r "${pkgdir}"/usr/lib/ruby/${rubyver}/{irb,irb.rb}
|
|
rm "${pkgdir}"/usr/bin/irb
|
|
rm "${pkgdir}"/usr/lib/ruby/gems/${rubyver}/specifications/default/irb-*.gemspec
|
|
rm "${pkgdir}"/usr/share/man/man1/irb.1
|
|
|
|
# remove all bundled gems to avoid conflicts with ruby-* Arch packages
|
|
rm -r "${pkgdir}"/usr/lib/ruby/gems/${rubyver}/gems/*
|
|
}
|
|
|
|
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"
|
|
}
|