nac3/nix/windows/PKGBUILD

27 lines
503 B
Bash
Raw Normal View History

2022-04-04 14:24:47 +08:00
pkgbase="mingw-w64-nac3artiq"
pkgname="mingw-w64-clang-x86_64-nac3artiq"
2022-04-04 14:24:47 +08:00
pkgver=1.0
pkgrel=1
pkgdesc="New ARTIQ compiler 3"
arch=("any")
mingw_arch=("clang64")
2022-04-04 14:24:47 +08:00
url="https://m-labs.hk"
license=("LGPL")
source=("nac3artiq.pyd")
noextract=("nac3artiq.pyd")
sha256sums=("SKIP")
depends=("mingw-w64-clang-x86_64-python")
2022-04-04 14:24:47 +08:00
prepare() {
true
}
build() {
true
}
package() {
mkdir -p $pkgdir/clang64/lib/python3.11/site-packages
cp ${srcdir}/nac3artiq.pyd $pkgdir/clang64/lib/python3.11/site-packages
2022-04-04 14:24:47 +08:00
}