Unverified Commit 81e658a6 authored by Birte Kristina Friesel's avatar Birte Kristina Friesel
Browse files

add docker helper scripts

parent 2eacdd50
Loading
Loading
Loading
Loading

scripts/makedeb-docker

0 → 100755
+11 −0
Original line number Diff line number Diff line
#!/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"
+34 −0
Original line number Diff line number Diff line
#!/bin/sh

set -e

export DEBIAN_FRONTEND=noninteractive
export APT_LISTCHANGES_FRONTEND=none

apt-get update
apt-get -y install \
	apt-file dh-make-perl libmodule-build-perl \
	libclass-accessor-perl libdatetime-perl libdatetime-format-strptime-perl \
	liblwp-protocol-https-perl libjson-perl libjson-xs-perl \
	liblist-moreutils-perl \
	libwww-perl \
	libtest-compile-perl libtest-pod-perl \
	libtest-simple-perl

apt-file update
apt-cache dumpavail | dpkg --merge-avail

mkdir -p /src/app
cp -a /orig/Build.PL /orig/Changelog /orig/README.md /src/app
cp -a /orig/bin /orig/lib /src/app
cd /src/app

sed -i 's/sign *=> *1/sign => 0/' Build.PL
perl Build.PL
perl Build
perl Build manifest
perl Build dist
mv Travel-Routing-DE-DBRIS-*.tar.gz ../app.tar.gz
dh-make-perl --build --version "${VERSION}"
chown ${USER}:${GROUP} ../*.deb
mv -v ../*.deb /out