Skip to content

Commit

Permalink
Update DEBIAN/control information
Browse files Browse the repository at this point in the history
Add python3-tk dependency
Add detailed description
  • Loading branch information
CharmySoft committed Mar 23, 2016
1 parent ec6c0e3 commit 2abfd74
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions build-deb.sh
@@ -1,7 +1,7 @@
#!/bin/bash

VERSION='1.0'
PACKAGE_REVISION='1'
PACKAGE_REVISION='3'
# Make a temperary directory for the debian package
mkdir tttpy_${VERSION}-${PACKAGE_REVISION}
chmod 0755 tttpy_${VERSION}-${PACKAGE_REVISION}
Expand All @@ -13,15 +13,18 @@ cat >> DEBIAN/control << EOM
Package: tttpy
Version: ${VERSION}-${PACKAGE_REVISION}
Section: games
Installed-Size: 226
Installed-Size: 228
Maintainer: Charlie Chen <Charlie@CharmySoft.com>
Homepage: http://www.CharmySoft.com/app/ttt-python.htm
Priority: optional
Architecture: all
Depends: python3
Description: Tic-Tac-Toe Online
Simple yet fun noughts and crosses game online
Depends: python3, python3-tk
Description: Simple yet fun noughts and crosses online game
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.
The game allows multiple players to connect to the server and play Tic-Tac-Toe online with other players.
Tic Tac Toe Online is open source under the MIT LIcense.
Please visit the project page to find out more:
http://CharmySoft.com/app/ttt-python.htm
EOM

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

# Remove the temperary folder
rm -r tttpy_${VERSION}-${PACKAGE_REVISION}
rm -r tttpy_${VERSION}-${PACKAGE_REVISION}

0 comments on commit 2abfd74

Please sign in to comment.