gfceux stuff
This commit is contained in:
parent
589d939c67
commit
ff1128bfe3
4
INSTALL
4
INSTALL
|
@ -2,10 +2,10 @@ You can install gfceux with setup.py:
|
||||||
|
|
||||||
$ sudo python setup.py install --prefix=/usr/local
|
$ sudo python setup.py install --prefix=/usr/local
|
||||||
|
|
||||||
TODO: 12/5/2008 - Work out build system with new modules.
|
|
||||||
|
|
||||||
You can change the prefix to whatever you like.
|
You can change the prefix to whatever you like.
|
||||||
|
|
||||||
|
FIXME - 12/5/2008 - You can only run gfceux out of its source folder.
|
||||||
|
|
||||||
Requirements:
|
Requirements:
|
||||||
Python (tested with 2.5); (Ubuntu package name: python)
|
Python (tested with 2.5); (Ubuntu package name: python)
|
||||||
NOTE: gfceux is not yet compatible with python 3.x
|
NOTE: gfceux is not yet compatible with python 3.x
|
||||||
|
|
1
TODO
1
TODO
|
@ -1,4 +1,5 @@
|
||||||
TODO:
|
TODO:
|
||||||
|
* update build scripts to refle
|
||||||
* joystick input support
|
* joystick input support
|
||||||
* hotkey config
|
* hotkey config
|
||||||
* resolution
|
* resolution
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -1,7 +1,7 @@
|
||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
from distutils.core import setup
|
from distutils.core import setup
|
||||||
setup(name="gfceux",
|
setup(name="gfceux",
|
||||||
version="2.0.0",
|
version="2.0.4",
|
||||||
scripts = ['gfceux'],
|
scripts = ['gfceux'],
|
||||||
data_files=[('share/gfceux/',['gfceux.xml', 'gfceux_big.png', 'gfceux.png']),
|
data_files=[('share/gfceux/',['gfceux.xml', 'gfceux_big.png', 'gfceux.png']),
|
||||||
('share/pixmaps/', ['gfceux.png']),
|
('share/pixmaps/', ['gfceux.png']),
|
||||||
|
|
Loading…
Reference in New Issue