diff options
author | Nicolás Reynolds <fauno@endefensadelsl.org> | 2014-07-24 03:36:08 +0000 |
---|---|---|
committer | Nicolás Reynolds <fauno@endefensadelsl.org> | 2014-07-24 03:36:08 +0000 |
commit | d256eaa80219eb28cbfb4f9474acc6fb41c63d3c (patch) | |
tree | d4752710a1a201081be416a2e43ea85947d67140 /community/vagrant/PKGBUILD | |
parent | ff9e4e102459123bc5bf56965828ebb81081d37f (diff) |
Thu Jul 24 03:31:46 UTC 2014
Diffstat (limited to 'community/vagrant/PKGBUILD')
-rw-r--r-- | community/vagrant/PKGBUILD | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/community/vagrant/PKGBUILD b/community/vagrant/PKGBUILD index 9fe412712..b5bab2b09 100644 --- a/community/vagrant/PKGBUILD +++ b/community/vagrant/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 112318 2014-05-31 12:49:53Z jsteel $ +# $Id: PKGBUILD 116187 2014-07-23 20:30:23Z jsteel $ # Maintainer: Jonathan Steel <jsteel at aur.archlinux.org> # Contributor: Ido Rosen <ido@kernel.org> # Contributor: Brett Hoerner <brett@bretthoerner.com> @@ -11,7 +11,7 @@ pkgname=vagrant pkgver=1.6.3 -pkgrel=1 +pkgrel=2 pkgdesc="Build and distribute virtualized development environments" arch=('i686' 'x86_64') url="http://vagrantup.com" @@ -20,11 +20,18 @@ options=('!emptydirs') depends=('ruby' 'curl' 'lzo2' 'libidn' 'rtmpdump') makedepends=('git') source=(http://github.com/mitchellh/$pkgname/archive/v$pkgver.tar.gz + nfs.patch http://pkgbuild.com/~jsteel/aur/$pkgname/substrate_archlinux_$CARCH.zip) -md5sums=('55a91a9d9cba7b8b9d126c75b114e510') +md5sums=('55a91a9d9cba7b8b9d126c75b114e510' 'a670dd93057fbd782176e0275b034bee') [[ $CARCH == i686 ]] && md5sums[3]='c04042b24de56d18a041bc005e5ecaa4' [[ $CARCH == x86_64 ]] && md5sums[3]='53d8a137e0b50fee8509a7d1c15fd33b' +prepare() { + cd "$srcdir"/$pkgname-$pkgver + + patch -Np0 -i "$srcdir"/nfs.patch +} + build() { cd "$srcdir"/$pkgname-$pkgver |