-
Notifications
You must be signed in to change notification settings - Fork 0
/
buildpkg.sh
executable file
·77 lines (61 loc) · 1.26 KB
/
buildpkg.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
#!/bin/sh
DIE=0
echo "deb directory..."
(mkdir deb ) > /dev/null || {
echo "cleaning..."
(rm -Rf deb/*) > /dev/null || {
echo
echo "**Error**: removing error ."
echo ""
exit 1
}
}
echo "making distribution source file..."
(make dist) > /dev/null || {
echo
echo "**Error**: make dist ."
echo ""
exit 1
}
echo "copying..."
(mv moldeodirector-*.tar.gz ./deb/) > /dev/null || {
echo
echo "**Error**: moving file ."
echo ""
exit 1
}
echo "renaming..."
( rename 's/\.tar.gz/\.orig.tar.gz/' deb/*.tar.gz ) > /dev/null || {
echo
echo "**Error**: renaming to orig."
echo ""
exit 1
}
( rename 's/\-/\_/' deb/*.tar.gz ) > /dev/null || {
echo
echo "**Error**: renaming to underscore."
echo ""
exit 1
}
( rename 's/[A-Z]/[a-z/' deb/*.tar.gz ) > /dev/null || {
echo
echo "**Error**: renaming to lowercase."
echo ""
exit 1
}
echo "extracting..."
(tar -C deb -zxvf ./deb/*.orig.tar.gz ) > /dev/null || {
echo
echo "**Error**: extracting ."
echo ""
exit 1
}
echo "
Now execute in deb folder:
cd deb/moldeodirector-*
dh_make -s -e [email protected]
gedit ../../debian/control debian/control debian/changelog
dpkg-buildpackage -us -uc -rfakeroot 2>&1 | tee ../../buildpkg_logs.txt
"
echo "Success: extraction"
exit 0