void-packages/srcpkgs/vagrant/template
2020-05-20 21:53:41 +02:00

60 lines
2.1 KiB
Bash

# Template file for 'vagrant'
pkgname=vagrant
version=2.2.9
revision=1
archs="i686 x86_64*"
hostmakedepends="ruby"
makedepends="ruby-devel zlib-devel"
depends="bsdtar curl openssh rsync"
short_desc="Tool for building and distributing development environments"
maintainer="Andrea Brancaleoni <abc@pompel.me>"
license="MIT"
homepage="https://www.vagrantup.com/"
distfiles="https://github.com/mitchellh/${pkgname}/archive/v${version}.tar.gz"
checksum=b8e541a00285b0aa8e79aab0832c664f2c53ee4af40e382f1b5c452ae5647139
nocross=yes
post_extract() {
sed -i 's|\,\ "<\ 2\.7"||g' $pkgname.gemspec
}
do_build() {
gem build $pkgname.gemspec
}
do_install() {
GEM_PATH=$DESTDIR/usr/lib/$pkgname GEM_HOME="$GEM_PATH" gem install $pkgname-$version.gem --no-document -- --disable-clean
find ${DESTDIR} -type f -name \*.a -delete
find ${DESTDIR} -type f -name \*.log -delete
find ${DESTDIR} -type f -name \*.c -delete
find ${DESTDIR} -type f -name \*.o -delete
find ${DESTDIR} -type f -name \*.S -delete
find ${DESTDIR} -type f -name \*.css -delete
find ${DESTDIR} -type f -name \*.html -delete
find ${DESTDIR} -type f -name \*.rhtml -delete
find ${DESTDIR} -type f -name \*.md -delete
find ${DESTDIR} -type f -name \*.h -delete
find ${DESTDIR} -type f -name \*.mk -delete
find ${DESTDIR} -type f -name \*.am -delete
find ${DESTDIR} -type f -name \*.in -delete
find ${DESTDIR} -type f -name \*akefile -delete
find ${DESTDIR} -type f -name Gemfile -delete
find ${DESTDIR} -type f -name LICENSE -delete
find ${DESTDIR} -type f -name .\* -delete
find ${DESTDIR} -type f -name \*.rdoc -delete
find ${DESTDIR} -type d -name ext -print0|xargs -0 rm -rf --
find ${DESTDIR} -type d -name test -print0|xargs -0 rm -rf --
find ${DESTDIR} -type d -name examples -print0|xargs -0 rm -rf --
find ${DESTDIR} -type d -name doc -print0|xargs -0 rm -rf --
find ${DESTDIR} -type d -name ports -print0|xargs -0 rm -rf --
rm -r ${DESTDIR}/usr/lib/$pkgname/cache
vmkdir usr/bin
vmkdir usr/share/bash-completion/completions
vbin $FILESDIR/$pkgname
ln -sf /usr/lib/$pkgname/gems/$pkgname-$version/contrib/bash/completion.sh \
$DESTDIR/usr/share/bash-completion/completions/$pkgname
vlicense LICENSE
}