blob: e61e3dfced173648a2a3bf5e3115725867d7e5c9 (
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
33
34
35
|
#!/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 \
libcache-perl libclass-accessor-perl libdatetime-perl \
libdatetime-format-strptime-perl libgeo-distance-xs-perl \
liblist-compare-perl liblist-moreutils-perl liblist-utilsby-perl \
libwww-perl libtext-levenshteinxs-perl libxml-libxml-perl \
libfile-slurp-perl libjson-perl libjson-xs-perl \
libtest-compile-perl libtest-number-delta-perl libtest-pod-perl \
libtest-fatal-perl libtest-simple-perl libtext-csv-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/examples /orig/lib /orig/share /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-Status-DE-IRIS-*.tar.gz ../app.tar.gz
dh-make-perl --build --version "${VERSION}"
chown ${USER}:${GROUP} ../*.deb
mv -v ../*.deb /out
|