summaryrefslogtreecommitdiff
path: root/pcr/ruby2.1-bundler/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'pcr/ruby2.1-bundler/PKGBUILD')
-rw-r--r--pcr/ruby2.1-bundler/PKGBUILD25
1 files changed, 0 insertions, 25 deletions
diff --git a/pcr/ruby2.1-bundler/PKGBUILD b/pcr/ruby2.1-bundler/PKGBUILD
deleted file mode 100644
index f80b99c40..000000000
--- a/pcr/ruby2.1-bundler/PKGBUILD
+++ /dev/null
@@ -1,25 +0,0 @@
-# Maintainer (Arch): Jonne Haß <me@jhass.eu>
-
-pkgname=ruby2.1-bundler
-_gemname=${pkgname#ruby2.1-}
-pkgver=1.9.6
-pkgrel=1
-pkgdesc="Manages an application's dependencies through its entire life, across many machines, systematically and repeatably."
-arch=('any')
-url="http://bundler.io"
-license=('MIT')
-depends=('ruby2.1')
-source=(http://rubygems.org/downloads/${_gemname}-${pkgver}.gem)
-noextract=(${_gemname}-${pkgver}.gem)
-sha256sums=('16ea402865debde4cb64e63f70a0f5bd464649a29ab256579a7ceb42cca45ee4')
-
-package() {
- cd "${srcdir}"
-
- local _gemdir="$(ruby-2.1 -rubygems -e'puts Gem.default_dir')"
- HOME=/tmp GEM_HOME="$_gemdir" GEM_PATH="$_gemdir" gem-2.1 install --no-user-install --ignore-dependencies \
- --no-ri --no-rdoc -i "${pkgdir}${_gemdir}" ${_gemname}-${pkgver}.gem
-
- install -d $pkgdir/usr/bin/
- ln -s $_gemdir/bin/bundle $pkgdir/usr/bin/bundle-2.1
-}