lutris/setup.py

103 lines
3.6 KiB
Python
Raw Normal View History

#!/usr/bin/python
2010-09-25 10:25:07 +00:00
# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*-
2010-09-26 23:56:44 +00:00
#
# Copyright (C) 2010 Mathieu Comandon <strider@strycore.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 warranty of
# MERCHANTABILITY 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/>.
2010-09-26 23:56:44 +00:00
#
2010-08-31 00:44:09 +00:00
import os
2010-09-26 23:56:44 +00:00
import lutris.constants
2010-01-22 15:02:40 +00:00
try:
import DistUtilsExtra.auto
except ImportError:
import sys
print >> sys.stderr, 'To build lutris you need https://launchpad.net/python-distutils-extra'
sys.exit(1)
assert DistUtilsExtra.auto.__version__ >= '2.10', 'needs DistUtilsExtra.auto >= 2.10'
def update_data_path(prefix, oldvalue=None):
try:
fin = file('lutris/lutrisconfig.py', 'r')
fout = file(fin.name + '.new', 'w')
2010-09-26 23:56:44 +00:00
for line in fin:
2010-01-22 15:02:40 +00:00
fields = line.split(' = ') # Separate variable from value
if fields[0] == '__lutris_data_directory__':
# update to prefix, store oldvalue
if not oldvalue:
oldvalue = fields[1]
line = "%s = '%s'\n" % (fields[0], prefix)
else: # restore oldvalue
line = "%s = %s" % (fields[0], oldvalue)
fout.write(line)
fout.flush()
fout.close()
fin.close()
os.rename(fout.name, fin.name)
except (OSError, IOError), e:
print ("ERROR: Can't find lutris/lutrisconfig.py")
sys.exit(1)
return oldvalue
def update_desktop_file(datadir):
try:
fin = file('lutris.desktop.in', 'r')
fout = file(fin.name + '.new', 'w')
2010-09-26 23:56:44 +00:00
for line in fin:
2010-01-22 15:02:40 +00:00
if 'Icon=' in line:
2010-03-20 23:26:25 +00:00
line = "Icon=%s\n" % (datadir + 'media/lutris.svg')
2010-01-22 15:02:40 +00:00
fout.write(line)
fout.flush()
fout.close()
fin.close()
os.rename(fout.name, fin.name)
except (OSError, IOError), e:
print ("ERROR: Can't find lutris.desktop.in")
sys.exit(1)
class InstallAndUpdateDataDirectory(DistUtilsExtra.auto.install_auto):
def run(self):
if self.root or self.home:
print "WARNING: You don't use a standard --prefix installation, take care that you eventually " \
"need to update quickly/quicklyconfig.py file to adjust __quickly_data_directory__. You can " \
"ignore this warning if you are packaging and uses --prefix."
previous_value = update_data_path(self.prefix + '/share/lutris/')
update_desktop_file(self.prefix + '/share/lutris/')
DistUtilsExtra.auto.install_auto.run(self)
update_data_path(self.prefix, previous_value)
DistUtilsExtra.auto.setup(
name='lutris',
2010-09-26 23:56:44 +00:00
version=lutris.constants.version,
2010-01-22 18:38:20 +00:00
license='GPL-3',
author='Mathieu Comandon',
author_email='strycore@gmail.com',
2010-08-31 00:44:09 +00:00
description='Install and play any video game on Linux',
2010-09-26 23:56:44 +00:00
long_description = """Lutris is a gaming platform for GNU/Linux. It's goal is to make
2010-08-31 00:44:09 +00:00
gaming on Linux as easy as possible by taking care of installing
2010-09-26 23:56:44 +00:00
and setting up the game for the user. The only thing you have to
2010-08-31 00:44:09 +00:00
do is play the game. It aims to support every game that is playable
on Linux.""",
2010-01-22 18:38:20 +00:00
url='https://launchpad.net/lutris',
2010-01-22 15:02:40 +00:00
cmdclass={'install': InstallAndUpdateDataDirectory}
)