[arch-commits] Commit in ruby2.7/repos (2 files)
Anatol Pomozov
anatolik at archlinux.org
Thu Jul 8 19:18:45 UTC 2021
Date: Thursday, July 8, 2021 @ 19:18:44
Author: anatolik
Revision: 975848
archrelease: copy trunk to community-testing-x86_64
Added:
ruby2.7/repos/community-testing-x86_64/
ruby2.7/repos/community-testing-x86_64/PKGBUILD
(from rev 975847, ruby2.7/trunk/PKGBUILD)
----------+
PKGBUILD | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 51 insertions(+)
Copied: ruby2.7/repos/community-testing-x86_64/PKGBUILD (from rev 975847, ruby2.7/trunk/PKGBUILD)
===================================================================
--- community-testing-x86_64/PKGBUILD (rev 0)
+++ community-testing-x86_64/PKGBUILD 2021-07-08 19:18:44 UTC (rev 975848)
@@ -0,0 +1,51 @@
+# Contributor: Thomas Dziedzic <gostrc at gmail.com>
+# Contributor: Allan McRae <allan at archlinux.org>
+# Contributor: John Proctor <jproctor at prium.net>
+# Contributor: Jeramy Rutley <jrutley at gmail.com>
+
+pkgname=ruby2.7
+pkgver=2.7.4
+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)
+sha512sums=('2cbb70ecfdd69120e789023ddb2b25cab0d03bc33fdc367a8f74ca8a3ee785c18c8ded9de3ecee627c7e275ffb85147e6abf921b6a61e31851b37c7fedf45bf9')
+
+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/
+}
More information about the arch-commits
mailing list