mirror of
https://github.com/Egor00f/kolibrios-gcc-toolchain.git
synced 2024-11-21 17:03:48 +01:00
add installation path selection
This commit is contained in:
parent
0baa7b470d
commit
0e3f85c0e3
10
install.sh
10
install.sh
@ -30,8 +30,18 @@ check_utils(){
|
|||||||
|
|
||||||
pwd
|
pwd
|
||||||
|
|
||||||
|
|
||||||
TOOLCHAIN_DIR="/home/autobuild/tools"
|
TOOLCHAIN_DIR="/home/autobuild/tools"
|
||||||
|
|
||||||
|
MESSAGE="Toolchain install path(default is $TOOLCHAIN_DIR): "
|
||||||
|
|
||||||
|
echo -n $MESSAGE
|
||||||
|
read INPUT
|
||||||
|
|
||||||
|
if [[ ! -z "$INPUT" ]]; then
|
||||||
|
TOOLCHAIN_DIR=$INPUT
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
print_msg "Checking utilities..."
|
print_msg "Checking utilities..."
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
|
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
|
||||||
|
|
||||||
#define MyAppName "KolibriOS gcc toolchain"
|
#define MyAppName "KolibriOS gcc toolchain"
|
||||||
#define MyAppVersion "0.1.3"
|
#define MyAppVersion "0.1.4"
|
||||||
#define MyAppPublisher "Egor00f"
|
#define MyAppPublisher "Egor00f"
|
||||||
#define MyAppURL "https://github.com/Egor00f/kolibrios-gcc-toolchain"
|
#define MyAppURL "https://github.com/Egor00f/kolibrios-gcc-toolchain"
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
Package: kos32-gcc
|
Package: kos32-gcc
|
||||||
Version: 0.1.3
|
Version: 0.1.4
|
||||||
Architecture: all
|
Architecture: all
|
||||||
Section: devel
|
Section: devel
|
||||||
Depends: libc6-i386:amd64, libmpc3:amd64
|
Depends: libc6-i386:amd64, libmpc3:amd64
|
||||||
|
1
package/DEBIAN/dirs
Normal file
1
package/DEBIAN/dirs
Normal file
@ -0,0 +1 @@
|
|||||||
|
/home/autobuild/tools/
|
Loading…
Reference in New Issue
Block a user