Skip to content

Instantly share code, notes, and snippets.

@simonewebdesign
Last active November 14, 2023 19:25
Show Gist options
  • Save simonewebdesign/a8d46cf9a19fee956886f8dbafd6ad5e to your computer and use it in GitHub Desktop.
Save simonewebdesign/a8d46cf9a19fee956886f8dbafd6ad5e to your computer and use it in GitHub Desktop.

Revisions

  1. simonewebdesign revised this gist Jul 12, 2019. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion install-quake3.sh
    Original file line number Diff line number Diff line change
    @@ -23,7 +23,7 @@ cd /Applications/ioquake3/baseq3

    COUNT=0
    while [ $COUNT -lt 9 ]; do
    curl http://files.anitalink.com/gamecache/quake3/baseq3/pak$COUNT.pk3 > pak$COUNT.pk3
    curl -L http://files.anitalink.com/gamecache/quake3/baseq3/pak$COUNT.pk3 > pak$COUNT.pk3
    let COUNT+=1
    done

  2. simonewebdesign revised this gist Oct 23, 2018. 1 changed file with 1 addition and 3 deletions.
    4 changes: 1 addition & 3 deletions install-quake3.sh
    Original file line number Diff line number Diff line change
    @@ -33,9 +33,7 @@ rm -R $HOME/ioq3

    read -p "Do you want to start the game now? (y/n) " -n 1 -r

    if [[ ! $REPLY =~ ^[Yy]$ ]]
    if [[ $REPLY =~ ^[Yy]$ ]]
    then
    exit 0
    else
    open /Applications/ioquake3/ioquake3.app
    fi
  3. simonewebdesign revised this gist Nov 4, 2016. 1 changed file with 1 addition and 3 deletions.
    4 changes: 1 addition & 3 deletions install-quake3.sh
    Original file line number Diff line number Diff line change
    @@ -31,10 +31,8 @@ echo "Quake 3: Arena installation successful!"

    rm -R $HOME/ioq3

    cd

    read -p "Do you want to start the game now? (y/n) " -n 1 -r
    echo

    if [[ ! $REPLY =~ ^[Yy]$ ]]
    then
    exit 0
  4. simonewebdesign created this gist Nov 4, 2016.
    43 changes: 43 additions & 0 deletions install-quake3.sh
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,43 @@
    #!/bin/bash

    # Install Quake 3: Arena on a mac

    # Copyright (c) 2016 simonewebdesign
    # Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
    # The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
    # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

    set -e # exit on error

    cd $HOME

    git clone https://github.com/ioquake/ioq3
    cd ioq3

    ./make-macosx.sh x86_64

    cd build
    cp -R release-darwin-x86_64/ /Applications/ioquake3

    cd /Applications/ioquake3/baseq3

    COUNT=0
    while [ $COUNT -lt 9 ]; do
    curl http://files.anitalink.com/gamecache/quake3/baseq3/pak$COUNT.pk3 > pak$COUNT.pk3
    let COUNT+=1
    done

    echo "Quake 3: Arena installation successful!"

    rm -R $HOME/ioq3

    cd

    read -p "Do you want to start the game now? (y/n) " -n 1 -r
    echo
    if [[ ! $REPLY =~ ^[Yy]$ ]]
    then
    exit 0
    else
    open /Applications/ioquake3/ioquake3.app
    fi