mirror of
https://github.com/archlinux/aur.git
synced 2026-03-05 15:42:45 +01:00
22 lines
733 B
Bash
22 lines
733 B
Bash
# Maintained at : https://github.com/jarondl/aur-pkgbuilds-jarondl
|
|
|
|
# Maintainer: Yaron de Leeuw < me@jarondl.net >
|
|
# Contributor: Bruno Carlin <self at aerdhyl dot eu>
|
|
|
|
pkgname=python-setuptools_git
|
|
pkgver=1.1
|
|
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=("https://pypi.python.org/packages/source/s/setuptools-git/setuptools-git-$pkgver.tar.gz")
|
|
md5sums=('7b5967e9527c789c3113b07a1f196f6e')
|
|
|
|
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"
|
|
}
|
|
|