summaryrefslogtreecommitdiff
path: root/scripts/makedeb-docker-helper
blob: 230e0eaa311526c36d3f38b149d009855057e71c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!/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 libexception-class-perl libfile-slurp-perl \
	libwww-perl libxml-libxml-perl \
	libtest-compile-perl libtest-number-delta-perl libtest-pod-perl \
	libtest-fatal-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 /orig/t /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-VRR-*.tar.gz ../app.tar.gz
dh-make-perl --build --version "${VERSION}"
chown ${USER}:${GROUP} ../*.deb
mv -v ../*.deb /out