Add vagrant package

Remove unneeded 'cd -' in vagrant script
This commit is contained in:
Ed Reel
2017-11-15 07:32:19 -06:00
parent 197ed4f47b
commit ba395f251a

31
packages/vagrant.rb Normal file
View File

@@ -0,0 +1,31 @@
require 'package'
class Vagrant < Package
description 'Vagrant is a tool for building and distributing development environments.'
homepage 'https://www.vagrantup.com/'
version '2.0.1'
source_url 'https://github.com/hashicorp/vagrant/archive/v2.0.1.tar.gz'
source_sha256 '212b91c45f60a825fcfc656424021e2550833778a6d4ebe13458676201a04eba'
binary_url ({
})
binary_sha256 ({
})
depends_on 'ruby'
def self.install
system "gem install bundle" unless File.exists? "#{CREW_PREFIX}/bin/bundle"
system "bundle install"
system "mkdir -p #{CREW_DEST_PREFIX}/bin"
FileUtils.cd("#{CREW_DEST_PREFIX}/bin") do
system "echo '#!/bin/bash' > vagrant"
system "echo 'cd #{CREW_PREFIX}/share/vagrant' >> vagrant"
system "echo 'bundle exec vagrant \"\$@\"' >> vagrant"
system "chmod +x vagrant"
end
system "sed -i '349,354d' templates/locales/en.yml"
system "mkdir -p #{CREW_DEST_PREFIX}/share/vagrant"
system "cp -r . #{CREW_DEST_PREFIX}/share/vagrant"
end
end