Nicely format ubuntu dependencies
This commit is contained in:
parent
749b9d4ec0
commit
da3559b706
24
bootstrap.sh
24
bootstrap.sh
|
@ -168,7 +168,29 @@ ubuntu()
|
||||||
echo "Updating system..."
|
echo "Updating system..."
|
||||||
sudo "$2" update
|
sudo "$2" update
|
||||||
echo "Installing required packages..."
|
echo "Installing required packages..."
|
||||||
sudo "$2" install build-essential libc6-dev-i386 nasm curl file git libfuse-dev fuse pkg-config cmake autopoint autoconf libtool m4 syslinux-utils genisoimage flex bison gperf libpng-dev libhtml-parser-perl texinfo
|
sudo "$2" install \
|
||||||
|
autoconf \
|
||||||
|
autopoint \
|
||||||
|
bison \
|
||||||
|
build-essential \
|
||||||
|
cmake \
|
||||||
|
curl \
|
||||||
|
file \
|
||||||
|
flex \
|
||||||
|
fuse \
|
||||||
|
genisoimage \
|
||||||
|
git \
|
||||||
|
gperf \
|
||||||
|
libc6-dev-i386 \
|
||||||
|
libfuse-dev \
|
||||||
|
libhtml-parser-perl \
|
||||||
|
libpng-dev \
|
||||||
|
libtool \
|
||||||
|
m4 \
|
||||||
|
nasm \
|
||||||
|
pkg-config \
|
||||||
|
syslinux-utils \
|
||||||
|
texinfo
|
||||||
if [ "$1" == "qemu" ]; then
|
if [ "$1" == "qemu" ]; then
|
||||||
if [ -z "$(which qemu-system-x86_64)" ]; then
|
if [ -z "$(which qemu-system-x86_64)" ]; then
|
||||||
echo "Installing QEMU..."
|
echo "Installing QEMU..."
|
||||||
|
|
Loading…
Reference in a new issue