initial commit

This commit is contained in:
Ismael Carnales 2011-02-05 23:13:21 -08:00 committed by Thomas Dziedzic
commit 9f0fc979a4
2 changed files with 31 additions and 0 deletions

15
.SRCINFO Normal file
View file

@ -0,0 +1,15 @@
pkgbase = virtualenv-commands
pkgdesc = Additional commands for virtualenv
pkgver = 0.2.3
pkgrel = 1
url = http://thisismedium.com/labs/virtualenv-commands/
arch = i686
arch = x86_64
license = BSD
depends = python
depends = setuptools
source = http://pypi.python.org/packages/source/v/virtualenv-commands/virtualenv-commands-0.2.3.tar.gz
md5sums = 4ee0d64d5e8992a9cac1abf3657abb49
pkgname = virtualenv-commands

16
PKGBUILD Normal file
View file

@ -0,0 +1,16 @@
# Contributor: Ismael Carnales <icarnales at gmail dot com>
pkgname=virtualenv-commands
pkgver=0.2.3
pkgrel=1
pkgdesc="Additional commands for virtualenv"
arch=('i686' 'x86_64')
url="http://thisismedium.com/labs/virtualenv-commands/"
license=('BSD')
depends=('python' 'setuptools')
source=(http://pypi.python.org/packages/source/v/virtualenv-commands/$pkgname-$pkgver.tar.gz)
md5sums=('4ee0d64d5e8992a9cac1abf3657abb49')
build() {
cd $srcdir/$pkgname-$pkgver
python setup.py install --prefix=/usr --root=$pkgdir/ || return 1
}