parent
a462bd6e4e
commit
04571dffbc
3
linux/.gitignore
vendored
Normal file
3
linux/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
app
|
||||||
|
data
|
||||||
|
firefox-portable
|
@ -11,9 +11,9 @@ What works now
|
|||||||
|
|
||||||
How to use
|
How to use
|
||||||
-----
|
-----
|
||||||
1. Build preconfigured FireFox using script `./i2pdbrowserportable.sh`
|
1. Build preconfigured FireFox using script `i2pdbrowserportable.sh` from `build` folder
|
||||||
2. Run i2pd by executing `./i2pd` from `i2pd` folder
|
2. Run i2pd by executing `./i2pd` from `i2pd` folder
|
||||||
3. Run FireFox by executing `./firefox-portable` from `firefox-portable` folder
|
3. Run FireFox by executing `./firefox-portable`
|
||||||
|
|
||||||
Additional info
|
Additional info
|
||||||
-----
|
-----
|
||||||
|
@ -16,16 +16,13 @@ echo "This script prepearing $application $version for use with I2Pd"
|
|||||||
file="$application-$version.tar.bz2"
|
file="$application-$version.tar.bz2"
|
||||||
url="https://ftp.mozilla.org/pub/$application/releases/$version/linux-$arch/$language/$file"
|
url="https://ftp.mozilla.org/pub/$application/releases/$version/linux-$arch/$language/$file"
|
||||||
|
|
||||||
dir="$application-portable"
|
|
||||||
mkdir "$dir"
|
|
||||||
cd "$dir"
|
|
||||||
echo "Downloading $application..."
|
echo "Downloading $application..."
|
||||||
wget -q $url
|
curl -L -f -# -O $url
|
||||||
if [ $? -ne 0 ]; then # Not found error, trying to cut language variable
|
if [ $? -ne 0 ]; then # Not found error, trying to cut language variable
|
||||||
language=$(echo $language | cut -c-2)
|
language=$(echo $language | cut -c-2)
|
||||||
# re-create variable with cutted lang
|
# re-create variable with cutted lang
|
||||||
url="https://ftp.mozilla.org/pub/$application/releases/$version/linux-$arch/$language/$file"
|
url="https://ftp.mozilla.org/pub/$application/releases/$version/linux-$arch/$language/$file"
|
||||||
wget -q $url
|
curl -L -f -# -O $url
|
||||||
fi
|
fi
|
||||||
if [ ! -f $file ]; then
|
if [ ! -f $file ]; then
|
||||||
echo "Can't find downloaded file. Does FireFox support your system language?"
|
echo "Can't find downloaded file. Does FireFox support your system language?"
|
||||||
@ -34,38 +31,37 @@ fi
|
|||||||
echo "Extracting archive, please wait..."
|
echo "Extracting archive, please wait..."
|
||||||
tar xfj $file
|
tar xfj $file
|
||||||
rm $file
|
rm $file
|
||||||
mv $application app
|
mv $application ../app
|
||||||
mkdir data
|
mkdir ../data
|
||||||
|
|
||||||
# Deleting some not needed files
|
# Deleting some not needed files
|
||||||
rm app/crashreporter*
|
rm ../app/crashreporter*
|
||||||
rm app/removed-files
|
rm ../app/removed-files
|
||||||
rm app/run-mozilla.sh
|
rm ../app/run-mozilla.sh
|
||||||
rm app/update*
|
rm ../app/update*
|
||||||
rm app/browser/blocklist.xml
|
rm ../app/browser/blocklist.xml
|
||||||
rm -r app/dictionaries
|
rm -r ../app/dictionaries
|
||||||
# And edit some places
|
# And edit some places
|
||||||
sed -i 's/Enabled=1/Enabled=0/g' app/application.ini
|
sed -i 's/Enabled=1/Enabled=0/g' ../app/application.ini
|
||||||
sed -i 's/ServerURL=.*/ServerURL=-/' app/application.ini
|
sed -i 's/ServerURL=.*/ServerURL=-/' ../app/application.ini
|
||||||
sed -i 's/Enabled=1/Enabled=0/g' app/webapprt/webapprt.ini
|
sed -i 's/Enabled=1/Enabled=0/g' ../app/webapprt/webapprt.ini
|
||||||
sed -i 's/ServerURL=.*/ServerURL=-/' app/webapprt/webapprt.ini
|
sed -i 's/ServerURL=.*/ServerURL=-/' ../app/webapprt/webapprt.ini
|
||||||
# Done!
|
# Done!
|
||||||
|
|
||||||
echo "Downloading NoScript extension..."
|
echo "Downloading NoScript extension..."
|
||||||
wget -q https://addons.mozilla.org/firefox/downloads/latest/noscript/addon-722-latest.xpi?src=search -O app/browser/extensions/{73a6fe31-595d-460b-a920-fcc0f8843232}.xpi
|
curl -L -f -# -O https://addons.mozilla.org/firefox/downloads/latest/noscript/addon-722-latest.xpi
|
||||||
|
mv addon-722-latest.xpi ../app/browser/extensions/{73a6fe31-595d-460b-a920-fcc0f8843232}.xpi
|
||||||
|
|
||||||
echo "Adding standart configs..."
|
echo "Adding standart configs..."
|
||||||
mv ../configs/* data/
|
cp configs/* ../data/
|
||||||
rm -rf ../configs
|
|
||||||
|
|
||||||
echo '#!/bin/sh' > "${application}-portable"
|
echo '#!/bin/sh' > "../${application}-portable"
|
||||||
echo 'dir=${0%/*}' >> "${application}-portable"
|
echo 'dir=${0%/*}' >> "../${application}-portable"
|
||||||
echo 'if [ "$dir" = "$0" ]; then' >> "${application}-portable"
|
echo 'if [ "$dir" = "$0" ]; then' >> "../${application}-portable"
|
||||||
echo ' dir="."' >> "${application}-portable"
|
echo ' dir="."' >> "../${application}-portable"
|
||||||
echo 'fi' >> "${application}-portable"
|
echo 'fi' >> "../${application}-portable"
|
||||||
echo 'cd "$dir/app"' >> "${application}-portable"
|
echo 'cd "$dir/app"' >> "../${application}-portable"
|
||||||
echo './firefox -profile ../data -no-remote' >> "${application}-portable"
|
echo './firefox -profile ../data -no-remote' >> "../${application}-portable"
|
||||||
|
|
||||||
chmod +x "$application-portable"
|
chmod +x "../$application-portable"
|
||||||
echo ... finished
|
echo ... finished
|
||||||
rm ../$0
|
|
Loading…
Reference in New Issue
Block a user