diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2012-01-05 22:51:26 -0500 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2012-01-05 22:51:26 -0500 |
commit | 9120886b119a1d60704f67e26509d05dd301649a (patch) | |
tree | 3069190208ab662db21a36269f66af314e765fa7 /social/diaspora-git | |
parent | 52281f6006c5a93b3d5fd1fec4f48c6591f91f91 (diff) | |
parent | 7166e2302ae1b95734a166b65f432cb1706779a4 (diff) | |
download | abslibre-9120886b119a1d60704f67e26509d05dd301649a.tar.gz abslibre-9120886b119a1d60704f67e26509d05dd301649a.tar.bz2 abslibre-9120886b119a1d60704f67e26509d05dd301649a.zip |
Merge branch 'master' of ssh://parabolagnulinux.org:1863/abslibre
Diffstat (limited to 'social/diaspora-git')
-rw-r--r-- | social/diaspora-git/PKGBUILD | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/social/diaspora-git/PKGBUILD b/social/diaspora-git/PKGBUILD index 1cf183cf7..57459173d 100644 --- a/social/diaspora-git/PKGBUILD +++ b/social/diaspora-git/PKGBUILD @@ -7,7 +7,7 @@ pkgbase=diaspora-git pkgname=('diaspora-mysql-git' 'diaspora-postgresql-git' 'diaspora-sqlite-git') -pkgver=20110623 +pkgver=20111229 pkgrel=1 pkgdesc="A privacy aware, personally controlled, do-it-all, open source social network" arch=('i686' 'x86_64') @@ -39,18 +39,18 @@ build() { if [[ -d $_gitname ]] ; then pushd $_gitname - git pull origin + $tsocks git pull origin msg "The local files are updated." popd else - git clone $_gitroot + $tsocks git clone $_gitroot msg "Git clone done." fi msg "Start making..." [[ -d $_gitname-build ]] && rm -fr $_gitname-build - git clone $_gitname $_gitname-build + $tsocks git clone $_gitname $_gitname-build # Include all gems export GEM_HOME="${PWD}/vendor" @@ -59,7 +59,7 @@ build() { cd ${srcdir}/${_gitname}-build - gem install bundler + $tsocks gem install bundler } # Helper |