forked from john30/ebusd-configuration
-
Notifications
You must be signed in to change notification settings - Fork 0
/
make_debian.sh
executable file
·75 lines (69 loc) · 2.09 KB
/
make_debian.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
67
68
69
70
71
72
73
74
75
#!/bin/sh
# ebusd-configuration - configuration files for ebusd, a daemon for
# communication with eBUS heating systems.
# Copyright (C) 2014-2016 John Baier <[email protected]>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
echo "*************"
echo " prepare"
echo "*************"
echo
LANG=$1
if [ -z "$LANG" ]; then
LANG="en"
fi
GITVER=`git describe --always 2>/dev/null || (echo -n 'p'; date +%Y%m%d)`
VERSION=`head -n 1 VERSION`
VERSION="$VERSION.$GITVER-$LANG"
ARCH="all"
BUILD="build-$ARCH"
RELEASE="ebusd-configuration-$VERSION"
PACKAGE="${RELEASE}_${ARCH}.deb"
rm -rf "$BUILD"
mkdir -p "$BUILD" || exit 1
cd "$BUILD" || exit 1
echo
echo "*************"
echo " pack"
echo "*************"
echo
mkdir -p $RELEASE/DEBIAN $RELEASE/etc/ebusd || exit 1
(tar cf - -C ../ebusd-2.1.x/$LANG "--exclude=./$BUILD" --exclude=./.* . | tar xf - -C $RELEASE/etc/ebusd) || exit 1
cat <<EOF > $RELEASE/DEBIAN/control
Package: ebusd-configuration
Version: $VERSION
Section: net
Priority: required
Architecture: $ARCH
Maintainer: John Baier <[email protected]>
Homepage: https://github.com/john30/ebusd-configuration
Bugs: https://github.com/john30/ebusd-configuration/issues
Depends: ebusd (>= 2.1)
Description: ebusd configuration files ($LANG).
EOF
cat <<EOF > $RELEASE/DEBIAN/dirs
/etc/ebusd
EOF
dpkg -b $RELEASE || exit 1
mv ebusd-configuration-$VERSION.deb "../$PACKAGE" || exit 1
echo
echo "*************"
echo " cleanup"
echo "*************"
echo
cd ..
rm -rf "$BUILD"
echo
files=`dpkg -c "$PACKAGE"|wc -l`
echo "Package created: $PACKAGE, $files files"