File: solarwolf.exec

package info (click to toggle)
solarwolf 1.0-3
  • links: PTS
  • area: main
  • in suites: woody
  • size: 2,348 kB
  • ctags: 371
  • sloc: python: 2,640; makefile: 56; sh: 31
file content (14 lines) | stat: -rw-r--r-- 255 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#! /usr/bin/python

"""
SolarWolf, the game
by Pete Shinners with the amazing pygame

Modified executable for Debian.
"""
import sys, os

os.chdir('/usr/share/games/solarwolf')
sys.path.insert(0,'/usr/lib/games/solarwolf')
import main
main.main(sys.argv)