File: 02-install-utils

package info (click to toggle)
debocker 0.2.6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 152 kB
  • sloc: python: 557; sh: 56; makefile: 19
file content (15 lines) | stat: -rwxr-xr-x 245 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/bash
#
# installs build tools
#

echo "== STAGE 02 (installing build tools) =="

set -eux

apt-get -y --no-install-recommends \
        install devscripts pbuilder build-essential aptitude lintian

apt-get -y clean

echo "== ENDSTAGE =="