mirror of https://github.com/m-labs/artiq.git
21 lines
465 B
Plaintext
21 lines
465 B
Plaintext
arch=("any")
|
|
mingw_arch=("mingw64")
|
|
pkgver=${DRV_VERSION}
|
|
url="https://m-labs.hk"
|
|
source=("source.tar")
|
|
sha256sums=("SKIP")
|
|
|
|
build() {
|
|
mkdir mingw64
|
|
export PYTHONPATH=`pwd`/mingw64/lib/python3.9/site-packages
|
|
chmod +w -R source
|
|
cd source
|
|
wine-msys2-build python setup.py install --single-version-externally-managed --root=Z:\\`pwd`/../mingw64
|
|
cd ..
|
|
rm -f mingw64/lib/python3.9/site-packages/easy-install.pth
|
|
}
|
|
|
|
package() {
|
|
cp -R mingw64 ${pkgdir}
|
|
}
|