forked from JuMi2006/yawgd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
make_yawgd_deb.sh
executable file
·94 lines (80 loc) · 2.46 KB
/
make_yawgd_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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
#!/bin/sh
#
#
# This file is part of yawgd.
#
# ebusd 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.
#
# ebusd 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 ebusd. If not, see http://www.gnu.org/licenses/.
#
# Original version by Mirko Hirsch
# Adapted by XueSheng-GIT, 2023
BUILD_DIR=/tmp
VERSION='2.10'
cd $BUILD_DIR
printf ">>> Build directory $BUILD_DIR create $BUILD_DIR/ebusd_build\n"
mkdir yawgd-build
cd yawgd-build
printf ">>> Checkout sources\n"
git clone https://github.com/XueSheng-GIT/yawgd.git
cd yawgd
printf ">>> Remove hidden files\n"
find $PWD -name .git -print0 | xargs -0 rm -r
printf ">>> Create Debian package related files\n"
mkdir trunk
mkdir trunk/DEBIAN
mkdir trunk/etc
mkdir trunk/usr
cp -R etc/* trunk/etc
cp -R usr/* trunk/usr
printf ">>> Remove Plugins/eBus-related stuff\n"
touch i-m-here
rm -r etc/yawgd/plugin/*
rm -r etc/yawgd/tools/*
rm etc/yawgd/yawgd_plugin.db
rm etc/yawgd/eBus_plugin.conf
rm etc/yawgd/yawgd-ebusd.csv
printf ">>> ../DEBIAN/control\n"
#ARCH=`dpkg --print-architecture`
ARCH="all"
echo "Package: yawgd
Version: $VERSION
Section: net
Priority: required
Architecture: $ARCH
Maintainer: XueSheng-GIT
Depends: liblog-log4perl-perl, libproc-pid-file-perl (>= 1.25), libfile-touch-perl, librrds-perl, libmath-round-perl, libmath-round-perl, libconfig-std-perl, libproc-daemon-perl, knxd,
knxd-tools, knxd-dev
Description: Daemon for EIB/KNX\n" > trunk/DEBIAN/control
printf ">>> ../DEBIAN/dirs\n"
echo "usr/sbin
usr/lib/perl5
etc/yawgd
etc/yawgd/plugin
etc/yawgd/tools
etc/default
etc/init.d
etc/logrotate.d" > trunk/DEBIAN/dirs
printf ">>> ../DEBIAN/postinst\n"
echo "#! /bin/sh -e
systemctl daemon-reload
service yawgd restart" > trunk/DEBIAN/postinst
chmod +x trunk/DEBIAN/postinst
mkdir yawgd-$VERSION
cp -R trunk/* yawgd-$VERSION
dpkg -b yawgd-$VERSION
printf ">>> Move Package to $BUILD_DIR\n"
mv yawgd-$VERSION.deb $BUILD_DIR/yawgd-${VERSION}_${ARCH}.deb
printf ">>> Remove Files\n"
cd $BUILD_DIR
rm -R yawgd-build
printf ">>> Debian Package created at $BUILD_DIR/yawgd-${VERSION}_${ARCH}.deb\n"