28 lines
946 B
Bash
28 lines
946 B
Bash
# POWER Maintainer: Alexander Baldeck <alex.bldck@gmail.com>
|
|
# Maintainer: Morten Linderud <foxboron@archlinux.org>
|
|
# Contributor: icasdri <icasdri at gmail dot com>
|
|
# Contributor: hexchain <i@hexchain.org>
|
|
|
|
pkgname=python-mypy_extensions
|
|
pkgver=1.0.0
|
|
pkgrel=5
|
|
pkgdesc='Experimental type system extensions for programs checked with the mypy typechecker'
|
|
url="http://www.mypy-lang.org/"
|
|
arch=(any)
|
|
license=('MIT')
|
|
depends=('python')
|
|
makedepends=('python-setuptools')
|
|
source=("$pkgname-$pkgver.tar.gz::https://pypi.org/packages/source/m/mypy_extensions/mypy_extensions-$pkgver.tar.gz")
|
|
sha256sums=('75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782')
|
|
|
|
build() {
|
|
cd "mypy_extensions-$pkgver"
|
|
python setup.py build
|
|
}
|
|
|
|
package() {
|
|
cd "mypy_extensions-$pkgver"
|
|
python setup.py install --prefix="/usr" --root="${pkgdir}" --optimize=1 --skip-build
|
|
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
|
|
}
|