new: pwsh : luajit installation script
This commit is contained in:
parent
cf51a57ed0
commit
5ee5aa585b
1 changed files with 22 additions and 0 deletions
22
bin/windows/luajit/install_luajit.ps1
Normal file
22
bin/windows/luajit/install_luajit.ps1
Normal file
|
@ -0,0 +1,22 @@
|
|||
# installing luajit under %localappdata%\Programs
|
||||
|
||||
# download and build
|
||||
git clone https://luajit.org/git/luajit.git
|
||||
cd luajit
|
||||
make
|
||||
|
||||
# installing
|
||||
$luajit_location = Join-Path $env:LOCALAPPDATA "Programs\luajit"
|
||||
mkdir $luajit_location
|
||||
cp .\src\luajit.exe, .\src\lua51.dll $luajit_location
|
||||
mkdir $luajit_location\lua
|
||||
mkdir $luajit_location\lua\jit
|
||||
cp .\src\jit\* $luajit_location\lua\jit
|
||||
|
||||
# add to path
|
||||
while($true) {
|
||||
$input = Read-Host "add $env:LOCALAPPDATA\Programs\luajit to `$PATH. (Y)"
|
||||
if ($input = 'Y') {
|
||||
break
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue