27 lines
503 B
Bash
27 lines
503 B
Bash
pkgbase="mingw-w64-nac3artiq"
|
|
pkgname="mingw-w64-clang-x86_64-nac3artiq"
|
|
pkgver=1.0
|
|
pkgrel=1
|
|
pkgdesc="New ARTIQ compiler 3"
|
|
arch=("any")
|
|
mingw_arch=("clang64")
|
|
url="https://m-labs.hk"
|
|
license=("LGPL")
|
|
source=("nac3artiq.pyd")
|
|
noextract=("nac3artiq.pyd")
|
|
sha256sums=("SKIP")
|
|
depends=("mingw-w64-clang-x86_64-python")
|
|
|
|
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
|
|
}
|