mirror of
https://github.com/archlinux/aur.git
synced 2026-01-27 20:28:31 +01:00
initial commit
This commit is contained in:
commit
9f0fc979a4
2 changed files with 31 additions and 0 deletions
15
.SRCINFO
Normal file
15
.SRCINFO
Normal 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
16
PKGBUILD
Normal 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
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue