-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
executable file
·38 lines (34 loc) · 1.13 KB
/
setup.py
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
#!/usr/bin/env python
from distutils.core import setup
from efl.utils.setup import build_extra, build_i18n, build_edc, uninstall
setup(
name = 'lightdm-efl-greeter',
version = '0.0.1',
description = 'A LightDM greeter for the EFL',
license="GNU General Public License v3 (GPLv3)",
author = 'Wolfgang Morawetz (wfx) & Davide Andreoli (davemds)',
author_email = '[email protected]',
url="https://github.com/wfx/enter",
requires = ['efl (>= 1.13)'],
scripts = ['bin/lightdm-efl-greeter'],
data_files = [
('/usr/share/xgreeters', ['data/desktop/lightdm-efl-greeter.desktop']),
],
cmdclass = {
'build': build_extra,
'build_edc': build_edc,
# 'build_i18n': build_i18n,
'uninstall': uninstall,
},
command_options={
'install': {
'record': ('setup.py', 'installed_files.txt'),
'prefix': ('setup.py', '/usr')
}
},
)
# Reference:
# https://lazka.github.io/pgi-docs/#LightDM-1
# http://www.mattfischer.com/blog/?p=5
# http://people.ubuntu.com/~robert-ancell/lightdm/reference/
# https://wiki.ubuntu.com/LightDM