PKGBUILDs/aur/python2-paver/PKGBUILD
Kevin Mihelich b59e682d7c aur updates
2015-03-25 12:05:12 +00:00

26 lines
767 B
Bash

# Maintainer: Sebastien Leduc <sebastien@sleduc.fr>
# Contributor: ponsfoot <cabezon dot hashimoto at gmail dot com>
pkgname=python2-paver
pkgver=1.2.4
pkgrel=1
pkgdesc="Build, Distribute and Deploy Python Projects"
arch=('i686' 'x86_64')
url="http://www.blueskyonmars.com/projects/paver/"
license=('BSD')
depends=('python2')
source=("http://pypi.python.org/packages/source/P/Paver/Paver-${pkgver}.tar.gz")
md5sums=('dbb94faf8b004eb9920b632808c20560')
package() {
cd "${srcdir}/Paver-${pkgver}"
python2 setup.py install --prefix="${pkgdir}/usr"
install -D "${srcdir}/Paver-${pkgver}/LICENSE.txt" \
"${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
# fix python3 conflict
for _f in "$pkgdir"/usr/bin/*; do
mv -v "$_f" "${_f}2"
done
}