forked from teejee2008/aptik
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build-deb.sh
executable file
·66 lines (43 loc) · 1.45 KB
/
build-deb.sh
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
#!/bin/bash
for prog in pbuilder-dist make dpkg-source ; do
if sh -c "which $prog 2> /dev/null"; then true ; else echo "You don\'t have $prog, install it" ; exit ; fi
done
backup=`pwd`
DIR="$( cd "$( dirname "$0" )" && pwd )"
cd $DIR
. ./BUILD_CONFIG
sh build-source.sh
rm -fv release/${pkg_name}-*.deb
build_deb_for_dist() {
dist=$1
arch=$2
echo ""
echo "=========================================================================="
echo " build-deb.sh : $dist-$arch"
echo "=========================================================================="
echo ""
rm -rfv release/${arch}
mkdir -pv release/${arch}
echo "-------------------------------------------------------------------------"
pbuilder-dist $dist $arch build release/source/${pkg_name}*.dsc --buildresult release/$arch
if [ $? -ne 0 ]; then cd "$backup"; echo "Failed"; exit 1; fi
echo "--------------------------------------------------------------------------"
cp -pv --no-preserve=ownership release/${arch}/${pkg_name}*.deb release/${pkg_name}-v${pkg_version}-${arch}.deb
if [ $? -ne 0 ]; then cd "$backup"; echo "Failed"; exit 1; fi
echo "--------------------------------------------------------------------------"
}
arches=""
if [ -z $1 ]; then
arches="i386 amd64"
else
arches="$1"
fi
for arch in $arches
do
build_deb_for_dist xenial $arch
done
#build_deb_for_dist xenial i386
#build_deb_for_dist xenial amd64
#build_deb_for_dist stretch armel
#build_deb_for_dist stretch armhf
cd "$backup"