-
-
Notifications
You must be signed in to change notification settings - Fork 156
/
configure.sh
117 lines (109 loc) · 3.84 KB
/
configure.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
#!/bin/bash
#shellcheck disable=SC2198,SC2124,SC2002,SC1001,SC2164,SC2072,SC2086,SC2035
# configure.sh
# configure script for wslu
# <https://github.com/wslutilities/wslu>
# Copyright (C) 2019 Patrick Wu
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
function env_check {
if [ -f /etc/fake-wsl-release ]
then
echo "[fake WSL Environment]"
elif [ ! -f /proc/sys/fs/binfmt_misc/WSLInterop ]
then
echo "Your distro do not support WSL Interopability. Installation Aborted."
exit 1
fi
}
function pkg_inst {
distro="$(head -n1 /etc/os-release | sed -e 's/NAME=\"//g')"
case $distro in
*Pengwin*)
sudo dpkg --force-depends --remove wslu
sudo apt install -y git gzip make shellcheck bats
;;
*WLinux*|Ubuntu*|*Debian*|*Kali*)
sudo apt purge -y wslu
sudo apt install -y git bc gzip make imagemagick shellcheck bats
;;
openSUSE*|SLES*)
sudo zypper -n rm wslu
sudo zypper -n install git bc gzip make imagemagick ShellCheck
;;
Alpine*)
sudo apk add git bc gzip make bash-completion imagemagick
;;
Arch*)
sudo pacman -Syyu git bc gzip make bash-completion imagemagick shellcheck iproute2 --noconfirm
;;
*Oracle*|Scientific*)
sudo yum install -y git bc gzip make bash-completion imagemagick iproute ShellCheck
;;
Alma*)
sudo yum install -y git bc gzip make bash-completion ImageMagick iproute ShellCheck
;;
*Fedora*)
sudo dnf install -y git bc gzip make bash-completion ImageMagick ShellCheck
;;
*Gentoo*)
sudo emerge -a n sys-devel/bc media-gfx/imagemagick app-shells/bash-completion sys-devel/make dev-vcs/git app-arch/gzip dev-util/shellcheck
;;
*Generic*) [ "fedora" == "$(grep -e "LIKE=" /etc/os-release | sed -e 's/ID_LIKE=//g')" ] && sudo dnf install -y git bc gzip make bash-completion ImageMagick ShellCheck || exit 1;;
*) exit 1;;
esac
}
function general_build_prep {
sed -i s/VERSIONPLACEHOLDER/"$(cat ./VERSION)"/g ./src/wslu-header
}
function deb_build_prep {
mkdir -p ./debian
cp -r ./extras/build/debian/* ./debian
chmod +x ./debian/rules
sed -i s/DISTROPLACEHOLDER/"$*"/g ./debian/changelog
sed -i s/VERSIONPLACEHOLDER/"$(cat ./VERSION)"/g ./debian/changelog
sed -i s/DATETIMEPLACEHOLDER/"$(date +'%a, %d %b %Y %T %z')"/g ./debian/changelog
}
function rpm_build_prep {
BUILD_VER_NUM=$(cat ./VERSION | cut -f1 -d-)
REL_VER_NUM=$(cat ./VERSION | cut -f2 -d-)
is_canary=""
if [ "$@" = "obs_canary" ]; then
FOR_BUILD="obs"
is_canary="-canary"
else
FOR_BUILD="$@"
fi
sed -i s/BUILDVERPLACEHOLDER/"$BUILD_VER_NUM"/g ./extras/build/rpm/"$FOR_BUILD"/wslu.spec
sed -i s/RELVERPLACEHOLDER/"$REL_VER_NUM"/g ./extras/build/rpm/"$FOR_BUILD"/wslu.spec
sed -i s/DATETIMEPLACEHOLDER/"$(date +'%a %b %d %Y')"/g ./extras/build/rpm/"$FOR_BUILD"/wslu.spec
sed -i s/Name\:\ wslu/Name\:\ wslu$is_canary/g ./extras/build/rpm/"$FOR_BUILD"/wslu.spec
sed -i s/^Source\:\ wslu/Source\:\ wslu$is_canary/g ./extras/build/rpm/"$FOR_BUILD"/wslu.spec
mkdir -p ../wslu$is_canary-$BUILD_VER_NUM/
cp -r * ../wslu$is_canary-$BUILD_VER_NUM/
cd ../
tar -czvf wslu$is_canary-$BUILD_VER_NUM.tar.gz ./wslu$is_canary-$BUILD_VER_NUM
cd ./wslu
}
for args; do
case $args in
--build) general_build_prep; exit;;
--rpm) rpm_build_prep $2; exit;;
--deb) deb_build_prep $2; exit;;
-e|--env) env_check; exit;;
-P|--pkg) pkg_inst; exit;;
*) exit 1;;
esac
done
env_check; pkg_inst