| 2 | | # |
|---|
| 3 | | # Simple packaging file for the Windows port. Only really useful when |
|---|
| 4 | | # cross-compiling, or using Cygwin. Originally by Robert Ruehlmann. |
|---|
| 5 | | # |
|---|
| 6 | | # Requires you have UPX (http://upx.sf.net/) installed. |
|---|
| 7 | | # |
|---|
| 8 | | # Use in the root directory of the game, like so: |
|---|
| 9 | | # scripts/pkg_win <name of of release, e.g. angband-3.4.6> |
|---|
| 10 | | # |
|---|
| | 2 | |
|---|
| | 3 | if [ $# -ne 1 ] && [ $# -ne 2 ]; then |
|---|
| | 4 | echo "Simple packaging file for the Windows port. Only really useful when" |
|---|
| | 5 | echo "cross-compiling, or using Cygwin. Originally by Robert Ruehlmann." |
|---|
| | 6 | echo "" |
|---|
| | 7 | echo "Requires you have UPX (http://upx.sf.net/) installed." |
|---|
| | 8 | echo "" |
|---|
| | 9 | echo "Use in the root directory of the game, like so:" |
|---|
| | 10 | echo " scripts/pkg_win <name of of release, e.g. angband-4.0.1> [<output filename>]" |
|---|
| | 11 | echo "" |
|---|
| | 12 | |
|---|
| | 13 | exit 1 |
|---|
| | 14 | fi |
|---|
| | 15 | |
|---|