Skip to content

Instantly share code, notes, and snippets.

@jaclar
Created March 26, 2013 18:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jaclar/5247779 to your computer and use it in GitHub Desktop.
Save jaclar/5247779 to your computer and use it in GitHub Desktop.
PKGBUILD for vagrant 1.1.4
# Maintainer: Jochen Schalanda <jochen+aur@schalanda.name>
# Contributor: Mathieu Clabaut <mathieu.clabaut@gmail.com>
# Contributor: helios <aur@wiresphere.de>
pkgname=vagrant
pkgver=1.1.4
pkgrel=1
pkgdesc="Tool for building and distributing virtualized development environments"
arch=('i686' 'x86_64')
url="http://vagrantup.com/"
license=('MIT')
options=(!strip)
depends=('ruby')
_git_revision='87613ec9392d4660ffcb1d5755307136c06af08c'
source=(http://files.vagrantup.com/packages/${_git_revision}/vagrant_${CARCH}.pkg.tar.xz)
[[ "$CARCH" == "x86_64" ]] && md5sums=('7fb1e363248b59b507905093f90b31e3')
[[ "$CARCH" == "i686" ]] && md5sums=('9ecb2743ca071d59cf6a3212f4930eaf')
package() {
mv $srcdir/{opt,usr} $pkgdir
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment