#!/usr/bin/env racket #lang racket/base (require racket/format) (provide all-packages package-options) (define (mygit a) (~a "https://git.greyserv.net/marrub/" a)) (define (gitlab a) (~a "https://gitlab.com/" a)) (define (github a) (~a "https://github.com/" a)) (define all-packages (list 'kmozillahelper 'libsodium-git 'vim-runtime-git 'applyppf 'basiliskii-git 'bsnes-plus-git 'cc65 'chocolate-doom 'crosstool-ng-git 'desmume-git 'dolphin-emu-git 'eternity-engine-git 'firefox-kde-opensuse-bin 'gdcc-git 'gitahead 'gopherus 'gvim-git 'higan 'maxcso 'mednaffe 'megatools 'mgba-git 'minecraft-launcher 'minecraft-server-fabric 'motsognir 'mupen64plus-git 'mupen64plus-gui-git 'mupen64plus-rsp-cxd4-git 'mupen64plus-video-angrylion-plus-git 'mupen64plus-video-gliden64 'nicotine-plus-git 'obs-linuxbrowser-bin 'otf-linjapona 'otf-san-francisco 'powershell-bin 'ppsspp-git 'prboom-plus 'previous-svn 'qjoypad 'quark-shaders 'radeontop 'ripcord 'sharenix-git 'sheepshaver-git 'slade 'teamviewer 'ttf-mac-fonts 'ttf-twemoji-color 'xf86-input-xwiimote-git 'xwiimote-git)) (define package-options (hash 'kmozillahelper (hash 'asdeps #t) 'libsodium-git (hash 'asdeps #t) 'vim-runtime-git (hash 'asdeps #t) 'bsnes-plus-git (hash 'url (mygit "bsnes-plus-git.git")) 'desmume-git (hash 'url (mygit "desmume-git.git")) 'higan (hash 'handle 'higan 'url (gitlab "higan/higan.git/")) 'minecraft-server-fabric (hash 'url (mygit "minecraft-server-fabric.git")) 'otf-linjapona (hash 'url (mygit "otf-linjapona.git")) 'ppsspp-git (hash 'url (mygit "ppsspp-git.git")) 'quark-shaders (hash 'handle 'higan-shaders 'url (github "hizzlekizzle/quark-shaders")) 'teamviewer (hash 'url (mygit "teamviewer.git") 'branch "nmfix"))) ;; EOF