rbenv: auto updated to 1.2.0-1
This commit is contained in:
parent
7bfaa72d53
commit
be3ab7f1cf
41
repo/rbenv/PKGBUILD
Normal file
41
repo/rbenv/PKGBUILD
Normal file
|
@ -0,0 +1,41 @@
|
||||||
|
# Maintainer: Chris Down <chris@chrisdown.name>
|
||||||
|
# Contributor: Vladimir Chizhov <jagoterr@gmail.com>
|
||||||
|
# Contributor: Jochen Schalanda <jochen+aur (-AT-) schalanda.name>
|
||||||
|
# Contributor: Ichimonji10 <Ichimonji10@gmail.com>
|
||||||
|
pkgname=rbenv
|
||||||
|
pkgver=1.2.0
|
||||||
|
pkgrel=1
|
||||||
|
pkgdesc="Simple Ruby version manager"
|
||||||
|
arch=('any')
|
||||||
|
url="https://github.com/rbenv/rbenv"
|
||||||
|
license=('MIT')
|
||||||
|
depends=()
|
||||||
|
optdepends=('ruby-build')
|
||||||
|
conflicts=('rbenv-git')
|
||||||
|
install="rbenv.install"
|
||||||
|
noextract=("v${pkgver}")
|
||||||
|
source=("https://github.com/rbenv/rbenv/tarball/v${pkgver}")
|
||||||
|
md5sums=('3ef4eea80b9a4f85f3978beb25665a2a')
|
||||||
|
|
||||||
|
build() {
|
||||||
|
cd $srcdir
|
||||||
|
|
||||||
|
tar -x --strip-components 1 -zf "v$pkgver"
|
||||||
|
}
|
||||||
|
|
||||||
|
package() {
|
||||||
|
cd $srcdir
|
||||||
|
|
||||||
|
mkdir -p $pkgdir/usr/bin
|
||||||
|
mkdir -p $pkgdir/usr/share/doc/$pkgname
|
||||||
|
mkdir -p $pkgdir/usr/share/licenses/$pkgname
|
||||||
|
mkdir -p $pkgdir/usr/lib/rbenv/completions
|
||||||
|
mkdir -p $pkgdir/usr/lib/rbenv/libexec
|
||||||
|
|
||||||
|
install -m 644 ./README.md $pkgdir/usr/share/doc/$pkgname
|
||||||
|
install -m 644 ./LICENSE $pkgdir/usr/share/licenses/$pkgname
|
||||||
|
install -m 644 ./completions/* $pkgdir/usr/lib/rbenv/completions/
|
||||||
|
install -m 755 ./libexec/* $pkgdir/usr/lib/rbenv/libexec/
|
||||||
|
|
||||||
|
ln -s /usr/lib/rbenv/libexec/rbenv $pkgdir/usr/bin/
|
||||||
|
}
|
10
repo/rbenv/rbenv.install
Normal file
10
repo/rbenv/rbenv.install
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
post_install() {
|
||||||
|
echo 'Your shell must be initialized before rbenv will function correctly.'
|
||||||
|
echo 'Run the following, and consider adding it to your ~/.bashrc:'
|
||||||
|
echo ' eval "$(rbenv init -)"'
|
||||||
|
}
|
||||||
|
|
||||||
|
post_remove() {
|
||||||
|
echo 'Remove the following from your ~/.bashrc, if present:'
|
||||||
|
echo ' eval "$(rbenv init -)"'
|
||||||
|
}
|
Loading…
Reference in a new issue