artiq-extrapkg/msys2/PKGBUILD.common

33 lines
970 B
Plaintext
Raw Permalink Normal View History

2022-10-24 18:06:21 +08:00
arch=("any")
mingw_arch=("clang64")
2022-10-24 18:06:21 +08:00
pkgver=${DRV_VERSION}
url="https://m-labs.hk"
source=("source.tar")
sha256sums=("SKIP")
build() {
mkdir clang64
export PYTHONPATH=`pwd`/clang64/lib/python3.11/site-packages
2022-10-24 18:06:21 +08:00
chmod +w -R source
cd source
wine-msys2-build python setup.py install --single-version-externally-managed --prefix=../clang64 --record=setuptools-sucks.txt
2022-10-24 18:06:21 +08:00
cd ..
# setuptools creates this file if it doesn't already exist, which causes conflicts between pacman packages
# see: https://corte.si/posts/code/setuptoolssucks/
rm -f clang64/lib/python3.11/site-packages/easy-install.pth
2022-10-24 18:06:21 +08:00
# patch broken shebangs (Z:/nix/store/...)
for entrypoint in clang64/bin/*-script.py; do
2022-10-24 18:06:21 +08:00
[ -f "$entrypoint" ] || continue
sed -i "1s|#!.*|#!python|" $entrypoint
done
for entrypoint in clang64/bin/*-script.pyw; do
2022-10-24 18:06:21 +08:00
[ -f "$entrypoint" ] || continue
sed -i "1s|#!.*|#!pythonw|" $entrypoint
done
}
package() {
cp -R clang64 ${pkgdir}
2022-10-24 18:06:21 +08:00
}