You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
260 B
22 lines
260 B
8 years ago
|
#!/bin/bash
|
||
|
set -ex
|
||
|
|
||
|
packages=(
|
||
|
libqt5core5a
|
||
|
libqt5gui5
|
||
|
libqt5network5
|
||
|
libqt5script5
|
||
|
libqt5widgets5
|
||
|
libqt5svg5
|
||
|
libqt5xml5
|
||
|
libqt5test5
|
||
|
|
||
|
libx11-6
|
||
|
libxtst6
|
||
|
)
|
||
|
|
||
|
apt update
|
||
|
|
||
|
# Runtime libraries
|
||
|
apt -y install "${packages[@]}"
|