mirror of
https://github.com/archlinux/aur.git
synced 2026-03-05 12:12:40 +01:00
adopted python-setuptools_git
This commit is contained in:
commit
cd8be25eab
3 changed files with 37 additions and 0 deletions
15
.SRCINFO
Normal file
15
.SRCINFO
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
pkgbase = python-setuptools_git
|
||||
pkgdesc = Setuptools revision control system plugin for Git
|
||||
pkgver = 1.0
|
||||
pkgrel = 1
|
||||
url = http://pypi.python.org/pypi/setuptools-git
|
||||
arch = any
|
||||
license = BSD
|
||||
depends = python
|
||||
depends = python-setuptools
|
||||
depends = git
|
||||
source = http://pypi.python.org/packages/source/s/setuptools-git/setuptools-git-1.0.tar.gz
|
||||
md5sums = de63b541a10c2b83caa478c687458b16
|
||||
|
||||
pkgname = python-setuptools_git
|
||||
|
||||
0
.gitignore
vendored
Normal file
0
.gitignore
vendored
Normal file
22
PKGBUILD
Normal file
22
PKGBUILD
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
# Maintained at : https://github.com/jarondl/aur-pkgbuilds-jarondl
|
||||
|
||||
# Maintainer: Yaron de Leeuw <jdlmail at gmail >
|
||||
# Contributor: Bruno Carlin <self at aerdhyl dot eu>
|
||||
|
||||
pkgname=python-setuptools_git
|
||||
pkgver=1.0
|
||||
pkgrel=1
|
||||
pkgdesc="Setuptools revision control system plugin for Git"
|
||||
arch=(any)
|
||||
url="http://pypi.python.org/pypi/setuptools-git"
|
||||
license=('BSD')
|
||||
depends=('python' 'python-setuptools' 'git')
|
||||
source=("http://pypi.python.org/packages/source/s/setuptools-git/setuptools-git-$pkgver.tar.gz")
|
||||
md5sums=('de63b541a10c2b83caa478c687458b16')
|
||||
|
||||
package() {
|
||||
cd $srcdir/setuptools-git-$pkgver
|
||||
python setup.py install --root=$pkgdir/ --optimize=1
|
||||
install -D -m644 LICENSE.txt "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
|
||||
}
|
||||
|
||||
Loading…
Add table
Reference in a new issue