File: 04-extract-source

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 (16 lines) | stat: -rwxr-xr-x 247 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/bash
#
# extracts sources
# the files are in /root/source

echo "== STAGE 04 (extract sources) =="

set -eux

cd /root/source
dpkg-source -x *.dsc ./build

# remove .dsc so it does not collide with the build
rm *.dsc

echo "== ENDSTAGE =="