-rwxr-xr-x | noncore/apps/qashmoney/make_arm | 23 | ||||
-rwxr-xr-x | noncore/apps/qashmoney/make_ipk | 41 | ||||
-rwxr-xr-x | noncore/apps/qashmoney/x86.sh | 10 |
3 files changed, 0 insertions, 74 deletions
diff --git a/noncore/apps/qashmoney/make_arm b/noncore/apps/qashmoney/make_arm deleted file mode 100755 index 4d0dc1c..0000000 --- a/noncore/apps/qashmoney/make_arm +++ b/dev/null | |||
@@ -1,23 +0,0 @@ | |||
1 | # Use this script to automatically make the arm version | ||
2 | # of QashMoney. The arm.sh file must be in this folder | ||
3 | # for it to work | ||
4 | |||
5 | # clean the directory then remove the Makefile | ||
6 | echo "Cleaning the directory and removing the current Makefile..." | ||
7 | if [ -e Makefile ] | ||
8 | then | ||
9 | make clean | ||
10 | rm Makefile | ||
11 | fi | ||
12 | |||
13 | # set the environment variables for the arm environment | ||
14 | echo "Setting environment variables..." | ||
15 | source arm.sh | ||
16 | |||
17 | # Make the new Makefile | ||
18 | echo "Making the new Makefile..." | ||
19 | tmake -o Makefile qashmoney.pro | ||
20 | |||
21 | # Make the program | ||
22 | echo "Making the program..." | ||
23 | make | ||
diff --git a/noncore/apps/qashmoney/make_ipk b/noncore/apps/qashmoney/make_ipk deleted file mode 100755 index d477c83..0000000 --- a/noncore/apps/qashmoney/make_ipk +++ b/dev/null | |||
@@ -1,41 +0,0 @@ | |||
1 | # Use this script to make the IPK file for distribution | ||
2 | # It assumes you are the root user. Ipkg likes to have all | ||
3 | # its files owned by root and this script does that. | ||
4 | # Change the user name from "allen" to your user name | ||
5 | # If you want to use this script | ||
6 | |||
7 | # Set the environment variables for the arm environment | ||
8 | echo "Setting environment variables..." | ||
9 | source arm.sh | ||
10 | |||
11 | # Remove any exisitng IPK files | ||
12 | echo "Removing exisiting IPK files..." | ||
13 | rm -rf *.ipk | ||
14 | |||
15 | # Strip the binary file | ||
16 | echo "Stripping the binary file..." | ||
17 | arm-linux-strip qashmoney | ||
18 | |||
19 | # Move the file to the right location | ||
20 | echo "Moving the binary file..." | ||
21 | mv qashmoney install/opt/QtPalmtop/bin && | ||
22 | |||
23 | # Change ownership of all the files | ||
24 | echo "Changing ownership of all files..." | ||
25 | chown -R root install | ||
26 | chgrp -R root install | ||
27 | chmod -R 0777 install | ||
28 | |||
29 | # Make the IPK | ||
30 | echo "Making the IPK file..." | ||
31 | ./ipkg-build install | ||
32 | |||
33 | # Remove the binary from the bin directory so we can make the tarball | ||
34 | echo "Removing qashmoney binary file..." | ||
35 | rm -rf install/opt/QtPalmtop/bin/qashmoney | ||
36 | |||
37 | # Restore ownership of all files | ||
38 | echo "Restoring ownership of all files..." | ||
39 | chown -R allen install | ||
40 | chgrp -R allen install | ||
41 | chmod -R 0777 install | ||
diff --git a/noncore/apps/qashmoney/x86.sh b/noncore/apps/qashmoney/x86.sh deleted file mode 100755 index b539aba..0000000 --- a/noncore/apps/qashmoney/x86.sh +++ b/dev/null | |||
@@ -1,10 +0,0 @@ | |||
1 | # !/bin/bash | ||
2 | CROSSCOMPILE=/opt/Embedix/tools | ||
3 | QTDIR=/opt/Qtopia | ||
4 | QPEDIR=/opt/Qtopia | ||
5 | PATH=$PATH:$QTDIR/bin:$QPEDIR/bin:/opt/Embedix/tools/bin:$QTDIR/tmake/bin | ||
6 | TMAKEPATH=/opt/Qtopia/tmake/lib/qws/linux-x86-g++/ | ||
7 | LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$QTDIR/lib:/usr/lib | ||
8 | INCPATH=/usr/include/g++-3 | ||
9 | export QPEDIR QTDIR PATH TMAKEPATH LD_LIBRARY_PATH PS1 | ||
10 | echo "Altered environment for Sharp Zaurus Development x86" | ||