mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 17:57:13 +08:00
71 lines
1.7 KiB
Bash
71 lines
1.7 KiB
Bash
# Contributions from Arch: https://projects.archlinux.org/svntogit/packages.git/tree/trunk?h=packages/ruby
|
|
|
|
pkgname=(ruby ruby-docs)
|
|
pkgver=2.3.3
|
|
pkgrel=1
|
|
arch=('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=(https://cache.ruby-lang.org/pub/ruby/${pkgver:0:3}/ruby-${pkgver}.tar.xz
|
|
gemrc)
|
|
sha1sums=('f2318460606d410e80dd5c82862a93e5736534de'
|
|
'0d24837add3d7ddcecd4c565f4a4a180176d9e6d')
|
|
|
|
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'
|
|
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"
|
|
}
|
|
|