mirror of
https://github.com/ScoopInstaller/Main.git
synced 2025-12-19 13:51:19 +00:00
haxe, neko: fix env path (#685)
This commit is contained in:
parent
bbd3acad1d
commit
126d8ba4ba
@ -1,8 +1,12 @@
|
|||||||
{
|
{
|
||||||
"homepage": "https://haxe.org/",
|
"homepage": "https://haxe.org",
|
||||||
"description": "Pre-release version of Haxe, for a stable version use haxe. Haxe is an open source toolkit based on a modern, high level, strictly typed programming language, a cross-compiler, a complete cross-platform standard library and ways to access each platform's native capabilities.",
|
"description": "High-level, cross-platform, multi-paradigm programming language and compiler (pre-release version)",
|
||||||
"version": "4.0.0-rc.5",
|
"version": "4.0.0-rc.5",
|
||||||
"license": "GPL-2.0-or-later",
|
"license": {
|
||||||
|
"identifier": "MIT,Zlib,BSD-3-Clause,...",
|
||||||
|
"url": "https://github.com/HaxeFoundation/neko/blob/master/LICENSE"
|
||||||
|
},
|
||||||
|
"depends": "neko",
|
||||||
"architecture": {
|
"architecture": {
|
||||||
"64bit": {
|
"64bit": {
|
||||||
"url": "https://github.com/HaxeFoundation/haxe/releases/download/4.0.0-rc.5/haxe-4.0.0-rc.5-win64.zip",
|
"url": "https://github.com/HaxeFoundation/haxe/releases/download/4.0.0-rc.5/haxe-4.0.0-rc.5-win64.zip",
|
||||||
@ -13,6 +17,10 @@
|
|||||||
"hash": "3747f1e55a99023cfada42391a5b9c5ca218376d2b64077112ad1ec1eff834bc"
|
"hash": "3747f1e55a99023cfada42391a5b9c5ca218376d2b64077112ad1ec1eff834bc"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"pre_install": [
|
||||||
|
"Move-Item \"$dir\\haxe_*\\*\" \"$dir\"",
|
||||||
|
"Remove-Item \"$dir\\haxe_*\""
|
||||||
|
],
|
||||||
"bin": [
|
"bin": [
|
||||||
"haxe.exe",
|
"haxe.exe",
|
||||||
"haxelib.exe"
|
"haxelib.exe"
|
||||||
@ -20,17 +28,11 @@
|
|||||||
"env_set": {
|
"env_set": {
|
||||||
"HAXEPATH": "$dir"
|
"HAXEPATH": "$dir"
|
||||||
},
|
},
|
||||||
"env_add_path": "$dir",
|
"env_add_path": ".",
|
||||||
"persist": "lib",
|
"persist": "lib",
|
||||||
"depends": "neko",
|
|
||||||
"pre_install": [
|
|
||||||
"if(Test-Path \"$dir\\haxe_*\") {",
|
|
||||||
" Move-Item -Force \"$dir\\haxe_*\\*\" \"$dir\"",
|
|
||||||
"}"
|
|
||||||
],
|
|
||||||
"checkver": {
|
"checkver": {
|
||||||
"url": "https://github.com/HaxeFoundation/haxe/releases",
|
"url": "https://github.com/HaxeFoundation/haxe/releases",
|
||||||
"re": "([\\d\\.]+-(rc|preview)[\\d\\.]+)"
|
"regex": "([\\d.]+-(rc|preview)[\\d.]+)"
|
||||||
},
|
},
|
||||||
"autoupdate": {
|
"autoupdate": {
|
||||||
"architecture": {
|
"architecture": {
|
||||||
|
|||||||
@ -1,11 +1,12 @@
|
|||||||
{
|
{
|
||||||
"homepage": "https://haxe.org/",
|
"homepage": "https://haxe.org",
|
||||||
"description": "High-level, cross-platform, multi-paradigm programming language and compiler.",
|
"description": "High-level, cross-platform, multi-paradigm programming language and compiler",
|
||||||
"version": "4.0.5",
|
"version": "4.0.5",
|
||||||
"license": {
|
"license": {
|
||||||
"identifier": "MIT,Zlib,BSD-3-Clause,...",
|
"identifier": "MIT,Zlib,BSD-3-Clause,...",
|
||||||
"url": "https://github.com/HaxeFoundation/neko/blob/master/LICENSE"
|
"url": "https://github.com/HaxeFoundation/neko/blob/master/LICENSE"
|
||||||
},
|
},
|
||||||
|
"depends": "neko",
|
||||||
"architecture": {
|
"architecture": {
|
||||||
"64bit": {
|
"64bit": {
|
||||||
"url": "https://github.com/HaxeFoundation/haxe/releases/download/4.0.5/haxe-4.0.5-win64.zip",
|
"url": "https://github.com/HaxeFoundation/haxe/releases/download/4.0.5/haxe-4.0.5-win64.zip",
|
||||||
@ -16,6 +17,10 @@
|
|||||||
"hash": "72c6015616bfec77c74b6402318b5cca667ef0010077d7db5b0210fa529ca7eb"
|
"hash": "72c6015616bfec77c74b6402318b5cca667ef0010077d7db5b0210fa529ca7eb"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"pre_install": [
|
||||||
|
"Move-Item \"$dir\\haxe_*\\*\" \"$dir\"",
|
||||||
|
"Remove-Item \"$dir\\haxe_*\""
|
||||||
|
],
|
||||||
"bin": [
|
"bin": [
|
||||||
"haxe.exe",
|
"haxe.exe",
|
||||||
"haxelib.exe"
|
"haxelib.exe"
|
||||||
@ -23,14 +28,8 @@
|
|||||||
"env_set": {
|
"env_set": {
|
||||||
"HAXEPATH": "$dir"
|
"HAXEPATH": "$dir"
|
||||||
},
|
},
|
||||||
"env_add_path": "$dir",
|
"env_add_path": ".",
|
||||||
"persist": "lib",
|
"persist": "lib",
|
||||||
"depends": "neko",
|
|
||||||
"pre_install": [
|
|
||||||
"if(Test-Path \"$dir\\haxe_*\") {",
|
|
||||||
" Move-Item -Force \"$dir\\haxe_*\\*\" \"$dir\"",
|
|
||||||
"}"
|
|
||||||
],
|
|
||||||
"checkver": {
|
"checkver": {
|
||||||
"github": "https://github.com/HaxeFoundation/haxe"
|
"github": "https://github.com/HaxeFoundation/haxe"
|
||||||
},
|
},
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"homepage": "https://nekovm.org",
|
"homepage": "https://nekovm.org",
|
||||||
"description": "A high-level dynamically typed programming language.",
|
"description": "A high-level dynamically typed programming language",
|
||||||
"version": "2.3.0",
|
"version": "2.3.0",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"architecture": {
|
"architecture": {
|
||||||
@ -21,6 +21,10 @@
|
|||||||
"nekoml.exe",
|
"nekoml.exe",
|
||||||
"nekotools.exe"
|
"nekotools.exe"
|
||||||
],
|
],
|
||||||
|
"env_set": {
|
||||||
|
"NEKO_INSTPATH": "$dir"
|
||||||
|
},
|
||||||
|
"env_add_path": ".",
|
||||||
"checkver": {
|
"checkver": {
|
||||||
"github": "https://github.com/HaxeFoundation/neko",
|
"github": "https://github.com/HaxeFoundation/neko",
|
||||||
"regex": "neko-([\\d.]+)-win64"
|
"regex": "neko-([\\d.]+)-win64"
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user