File: makedeb-docker

package info (click to toggle)
libtravel-routing-de-vrr-perl 2.24-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,032 kB
  • sloc: xml: 6,670; perl: 1,675; sh: 54; makefile: 7
file content (11 lines) | stat: -rwxr-xr-x 382 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh

mkdir -p out

docker run --rm -v "${PWD}:/orig:ro" -v "${PWD}/scripts:/scripts:ro" \
	-v "${PWD}/out:/out" -e USER=$(id -u) -e GROUP=$(id -g) \
	-e "DEBEMAIL=${DEBEMAIL}" -e "DEBFULLNAME=${DEBFULLNAME}" \
	-e "LOGNAME=${LOGNAME}" -e "VERSION=$(git describe --dirty)-1" \
	debian:buster /scripts/makedeb-docker-helper

echo "Debian package has been written to $(pwd)/out"