Set permissions while installing. Added tar.gz for Tools and Starter.

Reviewed by me.
This commit is contained in:
Tom Robinson
2008-09-04 08:54:08 -07:00
parent d797b2fe80
commit 5e982e64dc
3 changed files with 18 additions and 4 deletions
+7
View File
@@ -32,6 +32,13 @@ ln -sf $INSTALL_DIR/share/objj/bin/objjc $INSTALL_DIR/bin/objjc
ln -sf $INSTALL_DIR/share/objj/bin/steam $INSTALL_DIR/bin/steam
ln -sf $INSTALL_DIR/share/objj/bin/bake $INSTALL_DIR/bin/bake
chmod +x $INSTALL_DIR/bin/objj
chmod +x $INSTALL_DIR/bin/objjc
chmod +x $INSTALL_DIR/bin/steam
chmod +x $INSTALL_DIR/bin/bake
chmod +x $INSTALL_DIR/share/objj/bin/*
chmod +x $INSTALL_DIR/share/objj/lib/cat
cat <<EOT
Installation of the Objective-J tools to $INSTALL_DIR is almost complete!
+5 -4
View File
@@ -10,8 +10,9 @@ This package includes syntax highlighting modes for both SubEthaEdit and TextMat
***********************************************************************
1. Navigate to Tools (the directory containing this README).
2. type sudo ./install-tools
3. Once installation is complete, you will be presented with a list of
2. Enter "chmod +x install-tools"
3. Enter "sudo ./install-tools"
4. Once installation is complete, you will be presented with a list of
options that looks something like this:
Installation of the Objective-J tools to /usr/local is almost complete!
@@ -36,8 +37,8 @@ This package includes syntax highlighting modes for both SubEthaEdit and TextMat
(currently: )
4. Chances are you can ignore the first two options. If you chose to install everything to the default location, it should work fine without further modification.
5. Steam (see below) allows you to specify a global Build directory. If you wish to use it, you must set the STEAM_BUILD environment variable. Building Cappuccino from source requires this for example.
5. Chances are you can ignore the first two options. If you chose to install everything to the default location, it should work fine without further modification.
6. Steam (see below) allows you to specify a global Build directory. If you wish to use it, you must set the STEAM_BUILD environment variable. Building Cappuccino from source requires this for example.
**********************************************************************
* objj
+6
View File
@@ -48,10 +48,16 @@
<zip destfile = "${Build.Cappuccino}/Starter.zip">
<fileset dir = "${Build.Cappuccino.Starter}" />
</zip>
<tar destfile = "${Build.Cappuccino}/Starter.tar.gz" compression = "gzip">
<fileset dir = "${Build.Cappuccino.Starter}" />
</tar>
<zip destfile = "${Build.Cappuccino}/Tools.zip">
<fileset dir = "${Build.Cappuccino.Tools}" />
</zip>
<tar destfile = "${Build.Cappuccino}/Tools.tar.gz" compression = "gzip">
<fileset dir = "${Build.Cappuccino.Tools}" />
</tar>
</target>