Browse Source
setup-ubuntu.sh: install "devscripts"
Makes utility "debdiff" available.
android-5
Leonid Plyushch
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
0 deletions
-
scripts/setup-ubuntu.sh
|
@ -38,6 +38,7 @@ PACKAGES+=" libjpeg-dev" # Needed by ghostscript |
|
|
PACKAGES+=" gawk" # Needed by apr-util |
|
|
PACKAGES+=" gawk" # Needed by apr-util |
|
|
PACKAGES+=" libssl-dev" # Needed to build Rust |
|
|
PACKAGES+=" libssl-dev" # Needed to build Rust |
|
|
PACKAGES+=" gnupg" # Needed to verify downloaded .debs |
|
|
PACKAGES+=" gnupg" # Needed to verify downloaded .debs |
|
|
|
|
|
PACKAGES+=" devscripts" # Provides utility "debdiff". |
|
|
|
|
|
|
|
|
sudo DEBIAN_FRONTEND=noninteractive \ |
|
|
sudo DEBIAN_FRONTEND=noninteractive \ |
|
|
apt-get install -yq --no-install-recommends $PACKAGES |
|
|
apt-get install -yq --no-install-recommends $PACKAGES |
|
|