scripts/build-system/rebuild-pkgs.rkt

101 lines
1.9 KiB
Racket
Executable File

#!/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
'dolphin-emu-git
'f3
'firefox-kde-opensuse-bin
'gdcc-git
'gitahead
'gopherus
'gtk3-nocsd-git
'gvim-git
'higan
'maxcso
'mednaffe
'megasync
'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
'ndstrim
'nicotine-plus-git
'obs-linuxbrowser-bin
'otf-linjapona
'otf-san-francisco
'pkgtop-git
'ppsspp-git
'prboom-plus
'previous-svn
'qjoypad
'quakespasm-spiked-git
'quark-shaders
'radeontop
'ripcord
'sharenix-git
'sheepshaver-git
'slade
'ttf-twemoji-color
'uade
'xf86-input-xwiimote-git
'xwiimote-git
'zdoom))
(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"))
'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"))))
;; EOF