summaryrefslogtreecommitdiff
path: root/dev-ruby/ruby-install/ruby-install-0.8.4.ebuild
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2022-08-07 12:45:43 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2022-08-07 12:45:43 +0000
commitb283b044aa74d4f0a3c8b2e85238efa6439256ec (patch)
tree5f5444455f2e86583cf22dfbf16d5c7c8e6b57fd /dev-ruby/ruby-install/ruby-install-0.8.4.ebuild
parent8f7bd2a6f058fbef3d4b3867cc078036e06c8f9e (diff)
downloadbaldeagleos-repo-b283b044aa74d4f0a3c8b2e85238efa6439256ec.tar.gz
baldeagleos-repo-b283b044aa74d4f0a3c8b2e85238efa6439256ec.tar.xz
baldeagleos-repo-b283b044aa74d4f0a3c8b2e85238efa6439256ec.zip
Adding metadata
Diffstat (limited to 'dev-ruby/ruby-install/ruby-install-0.8.4.ebuild')
-rw-r--r--dev-ruby/ruby-install/ruby-install-0.8.4.ebuild44
1 files changed, 44 insertions, 0 deletions
diff --git a/dev-ruby/ruby-install/ruby-install-0.8.4.ebuild b/dev-ruby/ruby-install/ruby-install-0.8.4.ebuild
new file mode 100644
index 000000000000..706d5e5d217d
--- /dev/null
+++ b/dev-ruby/ruby-install/ruby-install-0.8.4.ebuild
@@ -0,0 +1,44 @@
+# Copyright 2021-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DESCRIPTION="Installs Ruby, JRuby, Rubinius, TruffleRuby (native / GraalVM), or mruby."
+HOMEPAGE="https://github.com/postmodern/ruby-install"
+SRC_URI="https://github.com/postmodern/ruby-install/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+PROPERTIES="test_network"
+RESTRICT="!test? ( test )"
+
+DEPEND=">=app-shells/bash-3.0:*"
+RDEPEND="${DEPEND}
+ sys-apps/grep
+ || ( >net-misc/wget-1.12 net-misc/curl )
+ dev-libs/openssl
+ app-arch/tar
+ app-arch/bzip2
+ app-arch/xz-utils
+ sys-devel/patch
+ || ( >=sys-devel/gcc-4.2 sys-devel/clang )"
+BDEPEND="test? ( dev-util/shunit2 )"
+
+# XXX: `make check` seems to be broken (violates shellcheck tests)
+src_test() {
+ emake test
+}
+
+src_prepare() {
+ default
+
+ sed -i Makefile -e "s/^VERSION=.\+$/VERSION=${PVR}/" \
+ || die "Cannot fix doc location to follow Gentoo/FHS guidelines"
+}
+
+src_install() {
+ emake DESTDIR="${D}" PREFIX="/usr" install
+}