1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
|
#!/usr/bin/env python3
# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*-
### BEGIN LICENSE
# Copyright (C) 2019, Wolf Vollprecht <w.vollprecht@gmail.com>
# This program is free software: you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 3, as published
# by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranties of
# MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
# PURPOSE. See the GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program. If not, see <http://www.gnu.org/licenses/>.
### END LICENSE
### DO NOT EDIT THIS FILE ###
import sys
import os
import gettext
import locale
_LOCAL = @LOCAL_BUILD@
if _LOCAL:
# In the local use case, use apostrophe module from the sourcetree
sys.path.insert(1, '@PYTHON_DIR@')
# In the local use case the installed schemas go in <builddir>/data
os.environ["XDG_DATA_DIRS"] = '@SCHEMAS_DIR@:' + os.environ.get("XDG_DATA_DIRS", "")
from gi.repository import Gio
import apostrophe
localedir = '@LOCALE_DIR@'
pkgdatadir = '@PKGDATA_DIR@'
# L10n
locale.textdomain('apostrophe')
locale.bindtextdomain('apostrophe', localedir)
gettext.textdomain('apostrophe')
gettext.bindtextdomain('apostrophe', localedir)
def run_application():
from apostrophe.application import Application
app = Application('@APP_ID@')
return app.run(sys.argv)
def main():
resource = Gio.resource_load(
os.path.join(pkgdatadir, 'apostrophe.gresource'))
Gio.Resource._register(resource)
return run_application()
if __name__ == '__main__':
if _LOCAL:
print('Running from source tree, using local files.')
sys.exit(main())
|