summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 53002d5b90fe0b0928eca049c21d92431301a066 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Maintainer: codedust
# Contributor: Dario Ostuni <dario.ostuni@gmail.com>
# Contributor: Clayton Craft <clayton at craftyguy dot net>

pkgname=python-setuptools-rust
pkgver=0.11.6
pkgrel=1
pkgdesc="Compile and distribute Python extensions written in rust as easily as if they were written in C."
arch=('any')
license=('MIT')
url="https://github.com/PyO3/setuptools-rust"
depends=('python' 'python-setuptools' 'python-semantic-version' 'python-toml')
source=("$pkgname::git+https://github.com/PyO3/setuptools-rust.git#tag=v$pkgver")
sha256sums=('SKIP')

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