mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
77 lines
2 KiB
Bash
77 lines
2 KiB
Bash
# 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)
|
|
|
|
pkgname=(ruby ruby-docs)
|
|
pkgver=2.2.1
|
|
pkgrel=1
|
|
arch=(i686 x86_64)
|
|
url='http://www.ruby-lang.org/en/'
|
|
license=(BSD custom)
|
|
makedepends=(gdbm openssl libffi doxygen graphviz libyaml ttf-dejavu tk)
|
|
options=(!emptydirs)
|
|
source=(http://cache.ruby-lang.org/pub/ruby/${pkgver:0:3}/ruby-${pkgver}.tar.xz
|
|
gemrc
|
|
0002-Use-only-unsigned-long-for-rb_serial_t.patch)
|
|
sha1sums=('31bbdb17237863bd26b3aa32c613fe42c95ccd60'
|
|
'de4b760b7e2cd9af88ca67536ce37b950f1ee514'
|
|
'21a73f5a6009c038c14119864289d79c16545256')
|
|
|
|
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'
|
|
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"
|
|
}
|