mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
35 lines
994 B
Bash
35 lines
994 B
Bash
# Contributor: Felix Yan <felixonmars@archlinux.org>
|
|
# Contributor: Andrzej Giniewicz <gginiu@gmail.com>
|
|
|
|
pkgname=python2-configparser
|
|
pkgver=3.5.0
|
|
pkgrel=1
|
|
pkgdesc="This library brings the updated configparser from Python 3.5 to Python 2.6-3.5."
|
|
arch=('any')
|
|
url="https://bitbucket.org/ambv/configparser"
|
|
license=('MIT')
|
|
depends=('python2')
|
|
makedepends=('python2-setuptools')
|
|
source=("https://pypi.io/packages/source/c/configparser/configparser-${pkgver}.tar.gz" license)
|
|
md5sums=('cfdd915a5b7a6c09917a64a573140538'
|
|
'f8e5b03556ed846d7681bacd4126f484')
|
|
|
|
prepare() {
|
|
sed -i -e "s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2|" \
|
|
$(find "${srcdir}"/configparser-${pkgver} -name '*.py')
|
|
}
|
|
|
|
build() {
|
|
cd "${srcdir}"/configparser-${pkgver}
|
|
|
|
python2 setup.py build
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}"/configparser-${pkgver}
|
|
|
|
python2 setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1
|
|
|
|
install -D "${srcdir}"/license "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
|
|
}
|