]> git.lizzy.rs Git - torbrowser-launcher.git/blobdiff - setup.py
AppArmor: allow start-tor-browser read access on dash.
[torbrowser-launcher.git] / setup.py
index 69922a0a3fa4299421a00583ceb8cdbbbb6459cd..a7dfff9efe8f6847c9bd33bb360ef79dba034b39 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -28,6 +28,9 @@ OTHER DEALINGS IN THE SOFTWARE.
 
 from distutils.core import setup
 import os
+import sys
+SHARE = 'share'
+
 
 def file_list(path):
     files = []
@@ -36,29 +39,40 @@ def file_list(path):
             files.append(path+'/'+filename)
     return files
 
-version = open('version').read().strip()
+with open(os.path.join(SHARE, 'torbrowser-launcher/version')) as buf:
+    version = buf.read().strip()
+
+datafiles = []
+for root, dirs, files in os.walk(SHARE):
+    datafiles.append((os.path.join(sys.prefix, root),
+                      [os.path.join(root, f) for f in files]))
 
-setup(name='torbrowser-launcher',
-      version=version,
-      author='Micah Lee',
-      author_email='micah@micahflee.com',
-      url='https://www.github.com/micahflee/torbrowser-launcher',
-      platforms=['GNU/Linux'],
-      license='BSD',
+if not hasattr(sys, 'real_prefix'):
+    # we're not in a virtualenv, so we can probably write to /etc
+    datafiles += [('/etc/apparmor.d/', [
+        'apparmor/torbrowser.Browser.firefox',
+        'apparmor/torbrowser.start-tor-browser',
+        'apparmor/torbrowser.Tor.tor',
+        'apparmor/usr.bin.torbrowser-launcher'])]
 
-      description='A program to help you download, keep updated, and run the Tor Browser Bundle',
-      long_description="""
+setup(
+    name='torbrowser-launcher',
+    version=version,
+    author='Micah Lee',
+    author_email='micah@micahflee.com',
+    url='https://www.github.com/micahflee/torbrowser-launcher',
+    platforms=['GNU/Linux'],
+    license='BSD',
+    description='A program to help you download, keep updated, and run the Tor Browser Bundle',
+    long_description="""
 Tor Browser Launcher is intended to make the Tor Browser Bundle (TBB) easier to maintain and use for GNU/Linux users. You install torbrowser-launcher from your distribution's package manager and it handles downloading the most recent version of TBB for you, in your language and for your architecture. It also adds a "Tor Browser" application launcher to your operating system's menu.
 
 When you first launch Tor Browser Launcher, it will download TBB from https://www.torproject.org/ and extract it in ~/.torproject, and then execute it. When you run it after that it will just execute TBB.
 
-Tor Browser Launcher will get updated each time a new version of TBB is released. When you open Tor Browser after an update, it will download the newer version of TBB for you and extract it over your old TBB directory in ~/.torproject, so you will maintain your TBB bookmarks. 
+Tor Browser Launcher will get updated each time a new version of TBB is released. When you open Tor Browser after an update, it will download the newer version of TBB for you and extract it over your old TBB directory in ~/.torproject, so you will maintain your TBB bookmarks.
 """,
+    packages=['torbrowser_launcher'],
+    scripts=['torbrowser-launcher'],
+    data_files=datafiles
+)
 
-      scripts=['torbrowser-launcher'],
-      data_files=[('/usr/share/applications', ['torbrowser.desktop', 'torbrowser-settings.desktop']),
-                  ('/usr/share/pixmaps', ['img/torbrowser32.xpm', 'img/torbrowser80.xpm']),
-                  ('/usr/share/torbrowser-launcher', ['keys/erinn.asc', 'keys/sebastian.asc', 'keys/alexandre.asc', 'keys/mike.asc', 'keys/mike-2013-09.asc', 'torproject.pem', 'mirrors.txt', 'modem.ogg', 'version']),
-                  ('/usr/share/torbrowser-launcher/locale/en', ['locale/en/messages.pot']),
-                  ('/etc/apparmor.d/', ['apparmor/torbrowser.Browser.firefox', 'apparmor/torbrowser.start-tor-browser', 'apparmor/torbrowser.Tor.tor', 'apparmor/usr.bin.torbrowser-launcher'])]
-      )