X-Git-Url: http://www.privoxy.org/gitweb/index.html?a=blobdiff_plain;f=constructPkgContent.sh;h=ac2edb2b06690269f92153dea6fa5a3e6d20df86;hb=f91168ab567fe94c15eedc8e136a8a515093b729;hp=fb5576a67819e8a65b65821e9ff0587b946d56d2;hpb=29beb00a50eac776824da88de003336d9ef751a7;p=OSXPackageBuilder.git diff --git a/constructPkgContent.sh b/constructPkgContent.sh index fb5576a..ac2edb2 100755 --- a/constructPkgContent.sh +++ b/constructPkgContent.sh @@ -46,13 +46,6 @@ echo "Copy the package skeleton (the unchanging content) to a new folder named ' echo "" cp -vR pkg\ content\ skeleton pkg\ content -# Replace the version number placeholders in the uninstallation script -echo "" -echo "Replace the version number placeholders in the uninstallation script" -echo "" -VERSION=`perl findversion.pl ../${SOURCE_DIR}/ChangeLog` -sed "s/PRIVOXY_VERSION/${VERSION}/g" pkg\ content\ skeleton/Applications/Privoxy/uninstall.command > pkg\ content/Applications/Privoxy/uninstall.command - # Copy the compiled privoxy binary from the '${SOURCE_DIR}' directory echo "" echo "" @@ -78,11 +71,12 @@ done # Enter the correct values for confdir and logdir into the config file echo "" echo "" -echo "Copy the config file from the '${SOURCE_DIR}' directory, modifying the confdir and logdir in passing" +echo "Copy the config file from the '${SOURCE_DIR}' directory, modifying the confdir, logdir and user-manual settings in passing" echo "" -sed 's/confdir ./confdir \/usr\/local\/etc\/privoxy/g' ../${SOURCE_DIR}/config > pkg\ content/usr/local/etc/privoxy/vanilla/config_temp -sed 's/logdir ./logdir \/var\/log\/privoxy/g' pkg\ content/usr/local/etc/privoxy/vanilla/config_temp > pkg\ content/usr/local/etc/privoxy/vanilla/config -rm -f pkg\ content/usr/local/etc/privoxy/vanilla/config_temp +sed 's/confdir ./confdir \/usr\/local\/etc\/privoxy/g' ../${SOURCE_DIR}/config > pkg\ content/usr/local/etc/privoxy/vanilla/config_temp1 +sed 's/logdir ./logdir \/var\/log\/privoxy/g' pkg\ content/usr/local/etc/privoxy/vanilla/config_temp1 > pkg\ content/usr/local/etc/privoxy/vanilla/config_temp2 +sed 's/#user-manual http:\/\/www.privoxy.org\/user-manual\//user-manual \/usr\/local\/share\/doc\/privoxy\/user-manual\//g' pkg\ content/usr/local/etc/privoxy/vanilla/config_temp2 > pkg\ content/usr/local/etc/privoxy/vanilla/config +rm -f pkg\ content/usr/local/etc/privoxy/vanilla/config_temp* # Copy the documentation hierarchy from the '${SOURCE_DIR}' directory echo ""