forked from gheja/early-ssh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build_deb.sh
executable file
·41 lines (31 loc) · 1.07 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
#!/bin/bash
rm -rf ./build_deb
mkdir ./build_deb
cp -xar ./src/* ./build_deb
if [ -e ".build_deb_version" ]; then
debian_version=`cat .build_deb_version`
else
debian_version=0
fi
debian_version=$((debian_version + 1))
echo $debian_version > .build_deb_version
cd ./build_deb
version=`cat ./usr/share/initramfs-tools/scripts/local-top/early_ssh | grep -Eo '^version=.*' | cut -d \" -f 2`
version="${version}-${debian_version}"
cat DEBIAN/control | sed -e "s/__VERSION__/$version/g" > DEBIAN/control.new
mv DEBIAN/control.new DEBIAN/control
# NOTE: will not handle filenames with spaces properly
find -type f | grep -vE "./DEBIAN" | sed -e 's,./,,' > DEBIAN/files
cat DEBIAN/files | xargs md5sum > DEBIAN/md5sums
# echo "etc/early-ssh/early-ssh.conf" > DEBIAN/conffiles
echo -n "" > DEBIAN/conffiles
cat ../changelog > DEBIAN/changelog
chmod 755 DEBIAN
chmod 644 DEBIAN/changelog
chmod 644 DEBIAN/conffiles
chmod 644 DEBIAN/control
chmod 644 DEBIAN/copyright
chmod 644 DEBIAN/files
chmod 644 DEBIAN/md5sums
chmod 755 DEBIAN/postinst
dpkg-deb --build ./ ../early-ssh_${version}.deb