Use relative paths for data_files in setup.py

This commit is contained in:
Micah Lee 2019-11-26 21:56:06 -08:00
parent 27107d8992
commit 03e2313191
No known key found for this signature in database
GPG key ID: 403C2657CD994F73

View file

@ -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"],
) )
) )