Added debian package specs

This commit is contained in:
MKSpeech Team 2017-03-30 14:51:34 +00:00
parent d31d1cbd3e
commit 75037325ba
3 changed files with 30 additions and 0 deletions

View File

@ -0,0 +1,10 @@
Package: guicurses
Version: 0.5-1
Section: python
Priority: optional
Architecture: all
Maintainer: MKSpeech <support@mkspeech.com>
Homepage: https://github.com/raspberrypi-accesible/guicurses
#Package: python3-guicurses
#Architecture: all
Description: A set of utilities for building applications using ncurses and python

12
guicurses_0.5/DEBIAN/postrm Executable file
View File

@ -0,0 +1,12 @@
#!/bin/bash
# Post removal script.
# This script runs after removing the package
set -e
#if test -e /usr/share/NVDARemoteServer
#then
#rm -rf /usr/share/NVDARemoteServer
#fi
#systemctl daemon-reload
set +e
exit 0

8
guicurses_0.5/DEBIAN/prerm Executable file
View File

@ -0,0 +1,8 @@
#!/bin/bash
# Pre removal script.
# This script runs before removing the package
set -e
service NVDARemoteServer stop
#set +e
exit 0