Last active
December 21, 2015 05:59
-
-
Save daroczig/6261396 to your computer and use it in GitHub Desktop.
snakefire-git updated PKGBUILD: https://aur.archlinux.org/packages/snakefire-git/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Maintainer: Igor Yanchenko <[email protected]> | |
# Updated: Gergely Daróczig <[email protected]> | |
pkgname=snakefire-git | |
pkgver=20130818 | |
pkgrel=1 | |
pkgdesc='A Campfire desktop client' | |
arch=('i686' 'x86_64' 'ppc') | |
url='http://snakefire.org' | |
license=('MIT') | |
depends=('python2' 'python2-distribute' 'python-pyfire' 'python2-pyqt' 'python2-keyring' 'python2-notify' 'python2-pyenchant') | |
optdepends=('python-gnomekeyring: For GNOME/XFCE/LXDE users that require notifications' 'aspell-en: Spell checking dictionary') | |
makedepends=('python2' 'python2-distribute') | |
provides=('snakefire') | |
conflicts=('snakefire') | |
replaces=('snakefire') | |
_gitroot=https://github.com/mariano/snakefire.git | |
_gitname=snakefire | |
build() { | |
cd "$srcdir" | |
msg "Connecting to GIT server...." | |
if [[ -d "$_gitname" ]]; then | |
cd "$_gitname" && git pull origin | |
msg "The local files are updated." | |
else | |
git clone "$_gitroot" "$_gitname" | |
fi | |
msg "GIT checkout done or server timeout" | |
msg "Starting build..." | |
rm -rf "$srcdir/$_gitname-build" | |
git clone "$srcdir/$_gitname" "$srcdir/$_gitname-build" | |
cd "$srcdir/$_gitname-build" | |
python2 setup.py build | |
} | |
package() { | |
cd "$srcdir/$_gitname-build" | |
python2 setup.py install -O1 --skip-build --install-menu-in-user-mode --root="$pkgdir" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment