diff options
author | Andrew Lewman <andrew@torproject.org> | 2006-06-25 04:02:43 +0000 |
---|---|---|
committer | Andrew Lewman <andrew@torproject.org> | 2006-06-25 04:02:43 +0000 |
commit | 0bed8ee53c8fac0773a2fc08605dc6fae43d1502 (patch) | |
tree | 1fba3165616891638a54afe0f104500e2f3d75c0 /contrib/osx | |
parent | f88d555ce07489e1e5294e334496250992860cbc (diff) | |
download | tor-0bed8ee53c8fac0773a2fc08605dc6fae43d1502.tar.gz tor-0bed8ee53c8fac0773a2fc08605dc6fae43d1502.zip |
Create binary osx un-installer, update perms on install so anyone can run the
uninstaller.
svn:r6685
Diffstat (limited to 'contrib/osx')
-rw-r--r-- | contrib/osx/Makefile.am | 2 | ||||
-rw-r--r-- | contrib/osx/TorPostflight | 2 | ||||
-rwxr-xr-x | contrib/osx/Tor_Uninstaller_bin.app | bin | 0 -> 13780 bytes | |||
-rw-r--r-- | contrib/osx/package.sh | 1 |
4 files changed, 4 insertions, 1 deletions
diff --git a/contrib/osx/Makefile.am b/contrib/osx/Makefile.am index f26148593f..53ba069dc8 100644 --- a/contrib/osx/Makefile.am +++ b/contrib/osx/Makefile.am @@ -6,4 +6,4 @@ EXTRA_DIST = PrivoxyConfDesc.plist PrivoxyConfInfo.plist \ TorInfo.plist.in TorStartupDesc.plist.in TorStartupInfo.plist \ package.sh privoxy.config TorPostflight addsysuser \ Tor_Uninstaller.applescript uninstall_tor_bundle.sh \ - package_list.txt tor_logo.gif + package_list.txt tor_logo.gif Tor_Uninstaller_bin.app diff --git a/contrib/osx/TorPostflight b/contrib/osx/TorPostflight index cd49924947..21beb97aa3 100644 --- a/contrib/osx/TorPostflight +++ b/contrib/osx/TorPostflight @@ -80,7 +80,9 @@ fi # Copy Uninstaller if [ -f $PACKAGE_PATH/Contents/Resources/Tor_Uninstaller.applescript ]; then cp $PACKAGE_PATH/Contents/Resources/Tor_Uninstaller.applescript $TARGET/Tor_Uninstaller.applescript + cp $PACKAGE_PATH/Contents/Resources/Tor_Uninstaller_bin.app $TARGET/Tor_Uninstaller_bin.app chmod 755 $TARGET/Tor_Uninstaller.applescript + chmod 755 $TARGET/Tor_Uninstaller_bin.app fi if [ -f $PACKAGE_PATH/Contents/Resources/uninstall_tor_bundle.sh ]; then diff --git a/contrib/osx/Tor_Uninstaller_bin.app b/contrib/osx/Tor_Uninstaller_bin.app Binary files differnew file mode 100755 index 0000000000..1a4eb3ba21 --- /dev/null +++ b/contrib/osx/Tor_Uninstaller_bin.app diff --git a/contrib/osx/package.sh b/contrib/osx/package.sh index 1012163a05..6cb5e0e069 100644 --- a/contrib/osx/package.sh +++ b/contrib/osx/package.sh @@ -78,6 +78,7 @@ chmod 755 contrib/osx/TorPostflight cp contrib/osx/TorPostflight $BUILD_DIR/tor_resources/postflight cp contrib/osx/addsysuser $BUILD_DIR/tor_resources/addsysuser cp contrib/osx/Tor_Uninstaller.applescript $BUILD_DIR/tor_resources/Tor_Uninstaller.applescript +cp contrib/osx/Tor_Uninstaller_bin.app $BUILD_DIR/tor_resources/Tor_Uninstaller_bin.app cp contrib/osx/uninstall_tor_bundle.sh $BUILD_DIR/tor_resources/uninstall_tor_bundle.sh cp contrib/osx/package_list.txt $BUILD_DIR/tor_resources/package_list.txt cp contrib/osx/tor_logo.gif $BUILD_DIR/tor_resources/background.gif |