24 lines
704 B
Plaintext
24 lines
704 B
Plaintext
pkgname=editables
|
|
pkgver=0.5
|
|
pkgdesc='Python library for creating editable wheels'
|
|
arch=('any')
|
|
homepage='https://github.com/pfmoore/editables'
|
|
license=('MIT')
|
|
sources=("${pkgname}-${pkgver}.tar.gz")
|
|
urls=("https://files.pythonhosted.org/packages/source/e/${pkgname}/${sources[0]}")
|
|
md5sums=("520de8c3a9dc5dfb2b365d104541c9de")
|
|
|
|
export PYTHONDONTWRITEBYTECODE=1
|
|
|
|
src_prepare() {
|
|
tar -xf ${distdir}/${sources[0]} --strip-components=1
|
|
}
|
|
|
|
src_build() {
|
|
pip3 wheel -w dist --no-cache-dir --no-build-isolation --no-deps $PWD
|
|
}
|
|
|
|
src_install() {
|
|
pip3 install --no-deps --no-warn-script-location --no-index --no-cache-dir --no-user --root ${pkgdir} --root-user-action=ignore --find-links dist ${pkgname}
|
|
}
|