-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixed: Debian package due lintian checking
- Loading branch information
1 parent
d97fae7
commit fc123af
Showing
6 changed files
with
20 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/etc/tgshd/tgshd.ini |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,11 @@ | ||
Package: tgsh | ||
Version: 1.1.1.20-1 | ||
Package: tgshd | ||
Priority: optional | ||
Version: 1.2.1.1-1 | ||
Maintainer: Renat Suleymanov <[email protected]> | ||
Architecture: amd64 | ||
Section: utils | ||
Description: Shell remote app via telegram bot | ||
Depends: dash | ||
Depends: dash, libc6 (>= 2.2.5) | ||
Origin: https://github.com/Al-Muhandis/ShellRemoteBot | ||
Description: Shell remote app via telegram bot | ||
Helps you work with your server (or remote computer) via telegram bot | ||
emulating terminal operations and a file manager functionality |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Linux shell script to create .deb package | ||
# Go to the repository local folder. For example, cd /home/User/ShellRemoteBot | ||
STAGING_DIR=./deb.staging | ||
find "${STAGING_DIR}" -type d -exec chmod 0755 {} \; | ||
find "${STAGING_DIR}" -type f -exec chmod 0644 {} \; | ||
find "${STAGING_DIR}/usr/bin" -type f -exec chmod 0755 {} \; | ||
SIZE_IN_KB="$(du -s ${STAGING_DIR} | awk '{print $1;}')" | ||
echo "Installed-Size: ${SIZE_IN_KB}" >> "${STAGING_DIR}/DEBIAN/control" | ||
gzip -9 -n deb.staging/usr/share/doc/tgshd/changelog.Debian | ||
read -p "Input package filename: " PACKAGE_NAME | ||
dpkg-deb --root-owner-group --build "${STAGING_DIR}" "${PACKAGE_NAME}.deb" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters