Skip to content

Commit 2abfd74

Browse files
author
CharmySoft
committed
Update DEBIAN/control information
Add python3-tk dependency Add detailed description
1 parent ec6c0e3 commit 2abfd74

File tree

1 file changed

+10
-7
lines changed

1 file changed

+10
-7
lines changed

build-deb.sh

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22

33
VERSION='1.0'
4-
PACKAGE_REVISION='1'
4+
PACKAGE_REVISION='3'
55
# Make a temperary directory for the debian package
66
mkdir tttpy_${VERSION}-${PACKAGE_REVISION}
77
chmod 0755 tttpy_${VERSION}-${PACKAGE_REVISION}
@@ -13,15 +13,18 @@ cat >> DEBIAN/control << EOM
1313
Package: tttpy
1414
Version: ${VERSION}-${PACKAGE_REVISION}
1515
Section: games
16-
Installed-Size: 226
16+
Installed-Size: 228
1717
Maintainer: Charlie Chen <Charlie@CharmySoft.com>
1818
Homepage: http://www.CharmySoft.com/app/ttt-python.htm
1919
Priority: optional
2020
Architecture: all
21-
Depends: python3
22-
Description: Tic-Tac-Toe Online
23-
Simple yet fun noughts and crosses game online
24-
21+
Depends: python3, python3-tk
22+
Description: Simple yet fun noughts and crosses online game
23+
Tic Tac Toe Online is a simple yet fun noughts and crosses online game. It is a socket-based Client-Server multi-player game that was developed using Python and its Tkinter GUI interface.
24+
The game allows multiple players to connect to the server and play Tic-Tac-Toe online with other players.
25+
Tic Tac Toe Online is open source under the MIT LIcense.
26+
Please visit the project page to find out more:
27+
http://CharmySoft.com/app/ttt-python.htm
2528
EOM
2629

2730
# Create 'usr' folder
@@ -67,4 +70,4 @@ chown -R root tttpy_${VERSION}-${PACKAGE_REVISION}
6770
dpkg-deb --build tttpy_${VERSION}-${PACKAGE_REVISION}
6871

6972
# Remove the temperary folder
70-
rm -r tttpy_${VERSION}-${PACKAGE_REVISION}
73+
rm -r tttpy_${VERSION}-${PACKAGE_REVISION}

0 commit comments

Comments
 (0)