git.y1.nz

SameBoy

Accurate GB/GBC emulator
download: https://git.y1.nz/archives/sameboy.tar.gz
README | Files | Log | Refs | LICENSE

.github/actions/install_deps.sh

      1 case `echo $1 | cut -d '-' -f 1` in
      2         ubuntu)
      3                 sudo apt-get -qq update
      4                 sudo apt-get install -yq bison libpng-dev pkg-config libsdl2-dev libgdk-pixbuf2.0-dev
      5                 (
      6                 cd `mktemp -d`
      7                 curl -L https://github.com/gbdev/rgbds/archive/v0.9.4.zip > rgbds.zip
      8                 unzip rgbds.zip
      9                 cd rgbds-*
     10                 make -sj
     11                 sudo make install
     12                 cd ..
     13                 rm -rf *
     14                 )
     15                 
     16                 (
     17                 cd `mktemp -d`
     18                 curl -L https://github.com/BR903/cppp/archive/refs/heads/master.zip > cppp.zip
     19                 unzip cppp.zip
     20                 cd cppp-*
     21                 make -sj
     22                 sudo make install
     23                 cd ..
     24                 rm -rf *
     25                 )
     26                 
     27                 
     28                 ;;
     29         macos)
     30                 brew install rgbds sdl2 cppp
     31                 ;;
     32         *)
     33                 echo "Unsupported OS"
     34                 exit 1
     35                 ;;
     36 esac

This webpage is intended to be an accessible preview of this repository. To get a fuller picture, clone it and use the git CLI.