mirror of
https://github.com/tstack/lnav
synced 2024-11-01 21:40:34 +00:00
25 lines
388 B
Bash
25 lines
388 B
Bash
#!/bin/sh
|
|
|
|
sudo apk update && sudo apk upgrade
|
|
sudo apk add \
|
|
build-base \
|
|
binutils \
|
|
m4 \
|
|
git \
|
|
zip \
|
|
perl \
|
|
ncurses \
|
|
ncurses-dev \
|
|
autoconf \
|
|
automake \
|
|
elfutils \
|
|
elfutils-dev \
|
|
libelf-static \
|
|
libexecinfo-dev \
|
|
libexecinfo-static \
|
|
libtool \
|
|
libunwind \
|
|
libunwind-dev \
|
|
libunwind-static \
|
|
linux-headers
|