summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: b998ea0a3016e24882a7e332ad84432fac4ba236 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Maintainer: Rizwan Hasan <rizwan.hasan486@gmail.com>
# TechLearners: https://github.com/TechLearnersInc

pkgname=cythonizer
pkgver=1.2.0b2
pkgrel=1
pkgdesc="Cythonizer is a script that will attempt to automatically convert one or more .py and .pyx files into the corresponding compiled .pyd or .so binary modules files."
arch=('any')
url="https://pypi.org/project/cythonizer/"
license=('MIT')
depends=('python-setuptools' 'cython')
source=("https://pypi.org/packages/source/${pkgname:0:1}/$pkgname/$pkgname-$pkgver.tar.gz")
md5sums=('0ffb10093b0ca94964d2bb0e2960b9bc')

package() {
    cd "${pkgname}-${pkgver}"
    python3 setup.py install --root="${pkgdir}" --optimize=1
}