10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# This program is made available under the GNU GPL version 2.0 or
# greater. See the accompanying file COPYING for details.
#
# This program is distributed WITHOUT ANY WARRANTY; without even the
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
# PURPOSE.
if [[ $OPTION=="" ]]; then
export OPTION=std
fi
echo You may need to do the following first:
echo sudo apt install libreadline-dev
echo sudo apt install libwebkitgtk-dev
echo sudo apt install libpangox-1.0-0 zlib1g-dev libfreetype6-dev cmake
|
>
>
|
|
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# This program is made available under the GNU GPL version 2.0 or
# greater. See the accompanying file COPYING for details.
#
# This program is distributed WITHOUT ANY WARRANTY; without even the
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
# PURPOSE.
# echo OPTION=$OPTION
if [[ $OPTION == "" ]]; then
export OPTION=std
fi
echo You may need to do the following first:
echo sudo apt install libreadline-dev
echo sudo apt install libwebkitgtk-dev
echo sudo apt install libpangox-1.0-0 zlib1g-dev libfreetype6-dev cmake
|
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
Ubuntu-16.04-x86_64-std)
KTYPE=32
CDVER=5.11.1
IUPVER=3.22
IMVER=3.12
# CHICKEN_VERSION=4.12.0
# CHICKEN_BASEVER=4.12.0
;;
Ubuntu-16.04-i686-std)
KTYPE=32
CDVER=5.11.1
IUPVER=3.22
IMVER=3.12
# CHICKEN_VERSION=4.12.0
|
>
>
>
>
>
>
>
>
|
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
Ubuntu-16.04-x86_64-std)
KTYPE=32
CDVER=5.11.1
IUPVER=3.22
IMVER=3.12
# CHICKEN_VERSION=4.12.0
# CHICKEN_BASEVER=4.12.0
;;
Ubuntu-16.04-x86_64-new)
KTYPE=32
CDVER=5.11.1
IUPVER=3.22
IMVER=3.12
CHICKEN_VERSION=4.13.0
CHICKEN_BASEVER=4.13.0
;;
Ubuntu-16.04-i686-std)
KTYPE=32
CDVER=5.11.1
IUPVER=3.22
IMVER=3.12
# CHICKEN_VERSION=4.12.0
|