mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-25 02:52:13 +08:00
37 lines
969 B
Bash
37 lines
969 B
Bash
# Contributor: Andrzej Giniewicz <gginiu@gmail.com>
|
|
|
|
pkgname=python2-singledispatch
|
|
pkgver=3.4.0.3
|
|
pkgrel=2
|
|
pkgdesc="Implementation of functools.singledispatch from Python 3.4"
|
|
arch=('any')
|
|
url="https://bitbucket.org/ambv/singledispatch"
|
|
license=('MIT')
|
|
depends=('python2' 'python2-six')
|
|
makedepends=('python2-setuptools')
|
|
source=("https://pypi.python.org/packages/source/s/singledispatch/singledispatch-$pkgver.tar.gz" license)
|
|
md5sums=('af2fc6a3d6cc5a02d0bf54d909785fcb'
|
|
'360faaffcf297a20e20e2289af00ce07')
|
|
|
|
prepare() {
|
|
cd "${srcdir}"/singledispatch-$pkgver
|
|
|
|
sed -i -e "s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2|" \
|
|
$(find "${srcdir}" -name '*.py')
|
|
}
|
|
|
|
build() {
|
|
cd "${srcdir}"/singledispatch-$pkgver
|
|
|
|
python2 setup.py build
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}"/singledispatch-$pkgver
|
|
|
|
python2 setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1
|
|
|
|
install -D "${srcdir}"/license "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
|
|
}
|
|
|