mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
c6d7d7e905
as they are dependecies of flexget
26 lines
809 B
Bash
26 lines
809 B
Bash
# Maintainer: ponsfoot <cabezon dot hashimoto at gmail dot com>
|
|
# Contributor: Linmiao Xu <linmiao.xu@gmail.com>
|
|
# Contributor: Roberto Alsina <ralsina@kde.org>
|
|
|
|
pkgname=python2-paver
|
|
pkgver=1.2.2
|
|
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=('0b23c15a2d881f59c4a4c6a1f597cb9f')
|
|
|
|
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
|
|
}
|