Fixing release and packaging files. openbox-logout.conf now copies to

/etc on setup.
This commit is contained in:
Andrew Williams
2009-01-19 21:56:15 +00:00
parent 949633d470
commit 86c928e35f
4 changed files with 16 additions and 3 deletions

View File

@@ -1,6 +1,7 @@
LICENSE
README
oblogout
openbox-logout.conf
setup.py
openboxlogout/__init__.py
openboxlogout/openboxlogout.py
@@ -12,6 +13,15 @@ openboxlogout/themes/default/cancel.png
openboxlogout/themes/default/logout.png
openboxlogout/themes/default/restart.png
openboxlogout/themes/default/shutdown.png
openboxlogout/themes/foom/cancel.png
openboxlogout/themes/foom/hibernate.png
openboxlogout/themes/foom/lock.png
openboxlogout/themes/foom/logout.png
openboxlogout/themes/foom/oblog_icons.7z
openboxlogout/themes/foom/restart.png
openboxlogout/themes/foom/shutdown.png
openboxlogout/themes/foom/suspend.png
openboxlogout/themes/foom/switch.png
openboxlogout/themes/oxygen/cancel.png
openboxlogout/themes/oxygen/hibernate.png
openboxlogout/themes/oxygen/lock.png

View File

@@ -1,4 +1,4 @@
include openboxlogout oblogout README LICENSE
include openboxlogout oblogout README LICENSE openbox-logout.conf
recursive-include openboxlogout/pofiles *
recursive-include openboxlogout/locale *
recursive-include openboxlogout/themes *

3
README
View File

@@ -26,8 +26,7 @@
INSTALLATION
- Run ./setup.py install
- Copy openbox-logout.conf to /etc
- Customise the config as required
- Customise the config (/etc/openbox-logout.conf) as required
######

View File

@@ -55,6 +55,10 @@ def find_data_files(srcdir, *wildcards, **kw):
## directories too.
files = find_data_files('openboxlogout/', '*.*')
# Extra entry for config file copied to /etc/
files.append(('/etc/', ['openbox-logout.conf']))
print files
from distutils.core import setup