Skip to content

Commit

Permalink
Add gb.web.gambas to self executable
Browse files Browse the repository at this point in the history
  • Loading branch information
eloaders committed Nov 5, 2013
1 parent f38b27a commit 73e4688
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@ self:
install -m 0775 usr/lib/gambas3/gb.image.so inex/usr/lib/gambas3/
install -m 0775 usr/lib/gambas3/gb.qt4.so inex/usr/lib/gambas3/
install -m 0775 usr/lib/gambas3/gb.settings.gambas inex/usr/lib/gambas3/
install -m 0775 usr/lib/gambas3/gb.web.gambas inex/usr/lib/gambas3/
install -m 0775 install-self inex/install-self
install -m 0775 install-self-inex inex/install-self-inex
chmod +x inex/install-self
Expand Down
10 changes: 7 additions & 3 deletions build-selfexecutable
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ GB3_RUNTIME=$(cat ./index.html | egrep gambas3-runtime_ | egrep saucy | egrep $A

GB3_GB_QT4=$(cat ./index.html | egrep gambas3-gb-qt4_ | egrep saucy | egrep $ARCHITECTURE.deb | sed -n '1p' | awk {'print $6'} | cut -d ">" -f 2 | cut -d '<' -f 1)

GB3_GB_WEB=$(cat ./index.html | egrep gambas3-gb-web_ | egrep saucy | egrep all.deb | sed -n '1p' | awk {'print $6'} | cut -d ">" -f 2 | cut -d '<' -f 1)

wget -c "$URL_DOWN$GB3_GB_IMAGE"
wget -c "$URL_DOWN$GB3_GB_GTK"
wget -c "$URL_DOWN$GB3_GB_FORM"
Expand All @@ -32,6 +34,7 @@ wget -c "$URL_DOWN$GB3_GB_FORM_STOCK"
wget -c "$URL_DOWN$GB3_RUNTIME"
wget -c "$URL_DOWN$GB3_GB_GUI"
wget -c "$URL_DOWN$GB3_GB_QT4"
wget -c "$URL_DOWN$GB3_GB_WEB"

echo $GB3_GB_IMAGE
echo $GB3_GB_GTK
Expand All @@ -43,6 +46,7 @@ echo $GB3_GB_FORM_STOCK
echo $GB3_RUNTIME
echo $GB3_GB_GUI
echo $GB3_GB_QT4
echo $GB3_GB_WEB

ar x $GB3_GB_IMAGE
tar -zxvf data.tar.gz -C ./
Expand All @@ -68,9 +72,9 @@ rm data.tar.gz control.tar.gz debian-binary
ar x $GB3_RUNTIME
tar -zxvf data.tar.gz -C ./
rm data.tar.gz control.tar.gz debian-binary
#ar x $GB3_GB_GUI
#tar -zxvf data.tar.gz -C ./
#rm data.tar.gz control.tar.gz debian-binary
ar x $GB3_GB_WEB
tar -zxvf data.tar.gz -C ./
rm data.tar.gz control.tar.gz debian-binary
ar x $GB3_GB_QT4
tar -zxvf data.tar.gz -C ./
rm data.tar.gz control.tar.gz debian-binary
Expand Down
3 changes: 2 additions & 1 deletion install-self-inex
Original file line number Diff line number Diff line change
Expand Up @@ -54,4 +54,5 @@ bindir="/usr/bin/"
install -m 0775 usr/lib/gambas3/gb.gui.so /usr/lib/gambas3/
install -m 0775 usr/lib/gambas3/gb.image.so /usr/lib/gambas3/
install -m 0775 usr/lib/gambas3/gb.qt4.so /usr/lib/gambas3/
install -m 0775 usr/lib/gambas3/gb.settings.gambas /usr/lib/gambas3/
install -m 0775 usr/lib/gambas3/gb.settings.gambas /usr/lib/gambas3/
install -m 0775 usr/lib/gambas3/gb.web.gambas /usr/lib/gambas3/

0 comments on commit 73e4688

Please sign in to comment.