mirror of
https://github.com/onionshare/onionshare.git
synced 2025-01-12 04:32:37 -03:00
Use relative paths for data_files in setup.py
This commit is contained in:
parent
27107d8992
commit
03e2313191
1 changed files with 11 additions and 32 deletions
43
setup.py
43
setup.py
|
@ -69,42 +69,21 @@ classifiers = [
|
||||||
"Environment :: Web Environment",
|
"Environment :: Web Environment",
|
||||||
]
|
]
|
||||||
data_files = [
|
data_files = [
|
||||||
(
|
("share/applications", ["install/org.onionshare.OnionShare.desktop"]),
|
||||||
os.path.join(sys.prefix, "share/applications"),
|
("share/icons/hicolor/scalable/apps", ["install/org.onionshare.OnionShare.svg"]),
|
||||||
["install/org.onionshare.OnionShare.desktop"],
|
("share/metainfo", ["install/org.onionshare.OnionShare.appdata.xml"]),
|
||||||
),
|
("share/onionshare", file_list("share")),
|
||||||
(
|
("share/onionshare/images", file_list("share/images")),
|
||||||
os.path.join(sys.prefix, "share/icons/hicolor/scalable/apps"),
|
("share/onionshare/locale", file_list("share/locale")),
|
||||||
["install/org.onionshare.OnionShare.svg"],
|
("share/onionshare/templates", file_list("share/templates")),
|
||||||
),
|
("share/onionshare/static/css", file_list("share/static/css")),
|
||||||
(
|
("share/onionshare/static/img", file_list("share/static/img")),
|
||||||
os.path.join(sys.prefix, "share/metainfo"),
|
("share/onionshare/static/js", file_list("share/static/js")),
|
||||||
["install/org.onionshare.OnionShare.appdata.xml"],
|
|
||||||
),
|
|
||||||
(os.path.join(sys.prefix, "share/onionshare"), file_list("share")),
|
|
||||||
(os.path.join(sys.prefix, "share/onionshare/images"), file_list("share/images")),
|
|
||||||
(os.path.join(sys.prefix, "share/onionshare/locale"), file_list("share/locale")),
|
|
||||||
(
|
|
||||||
os.path.join(sys.prefix, "share/onionshare/templates"),
|
|
||||||
file_list("share/templates"),
|
|
||||||
),
|
|
||||||
(
|
|
||||||
os.path.join(sys.prefix, "share/onionshare/static/css"),
|
|
||||||
file_list("share/static/css"),
|
|
||||||
),
|
|
||||||
(
|
|
||||||
os.path.join(sys.prefix, "share/onionshare/static/img"),
|
|
||||||
file_list("share/static/img"),
|
|
||||||
),
|
|
||||||
(
|
|
||||||
os.path.join(sys.prefix, "share/onionshare/static/js"),
|
|
||||||
file_list("share/static/js"),
|
|
||||||
),
|
|
||||||
]
|
]
|
||||||
if not platform.system().endswith("BSD") and platform.system() != "DragonFly":
|
if not platform.system().endswith("BSD") and platform.system() != "DragonFly":
|
||||||
data_files.append(
|
data_files.append(
|
||||||
(
|
(
|
||||||
"/usr/share/nautilus-python/extensions/",
|
"share/nautilus-python/extensions/",
|
||||||
["install/scripts/onionshare-nautilus.py"],
|
["install/scripts/onionshare-nautilus.py"],
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in a new issue