root / py / maugis / scenic / configure.py.in @ a97d0e33
History | View | Annotate | Download (420 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' |
