This URL has Read-Only access.

Statistics
| Branch: | Tag: | Revision:

root / py / scenic / configure.py.in @ f8fdad84

History | View | Annotate | Download (498 Bytes)

1
#!/usr/bin/env python
2
# -*- coding: utf-8 -*-
3

    
4
APPNAME = "scenic"
5
VERSION = '''@PACKAGE_VERSION@'''
6

    
7
import os
8
from scenic import data # TODO: change package data to configure.ac variable
9
# contains the glade, gtkrc and locale files.
10
PKGDATADIR = os.path.dirname(data.__file__) #'/usr/local/share/scenic'
11
# not used yet. Will contain custom icons. 
12
PIXMAPDIR = os.path.dirname(data.__file__) #'/usr/local/share/pixmaps'
13
ICON_FILE = os.path.join(PIXMAPDIR, 'scenic.png')
14
IN_DEVELOPMENT_MODE = False