scripts/scripts/rebuild-pkgs.rkt

105 lines
2.0 KiB
Racket
Raw Normal View History

2019-06-11 18:11:37 -07:00
#!/usr/bin/env racket
#lang racket/base
(require racket/format)
(provide all-packages package-options)
2019-06-18 04:55:54 -07:00
(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))
2019-06-11 18:11:37 -07:00
(define all-packages
(list
'kmozillahelper
2019-06-11 18:11:37 -07:00
'libsodium-git
'vim-runtime-git
2019-08-12 15:51:24 -07:00
'applyppf
'basiliskii-git
'bsnes-plus-git
'cc65
2019-06-11 18:11:37 -07:00
'chocolate-doom
2019-07-01 13:49:23 -07:00
'crosstool-ng-git
2019-06-11 18:11:37 -07:00
'desmume-git
'dolphin-emu-git
'eternity-engine-git
'firefox-kde-opensuse-bin
2019-06-11 18:11:37 -07:00
'gdcc-git
2019-07-04 21:27:15 -07:00
'gitahead
2019-06-11 18:11:37 -07:00
'gopherus
'gvim-git
'higan
'maxcso
'mednaffe
'megatools
'mgba-git
'minecraft-launcher
2019-06-18 04:55:54 -07:00
'minecraft-server-fabric
2019-06-11 18:11:37 -07:00
'motsognir
'mupen64plus-git
'mupen64plus-gui-git
'mupen64plus-rsp-cxd4-git
'mupen64plus-video-angrylion-plus-git
'mupen64plus-video-gliden64
2019-06-11 18:11:37 -07:00
'nicotine-plus-git
'obs-linuxbrowser-bin
2019-07-19 18:58:25 -07:00
'otf-linjapona
2019-07-12 09:00:02 -07:00
'otf-san-francisco
2019-06-11 18:11:37 -07:00
'powershell-bin
'ppsspp-git
'prboom-plus
2019-07-27 03:24:41 -07:00
'previous-svn
'qjoypad
2019-06-18 04:55:54 -07:00
'quark-shaders
2019-08-17 17:34:11 -07:00
'radeontop
2019-06-11 18:11:37 -07:00
'ripcord
'sharenix-git
'sheepshaver-git
2019-06-11 18:11:37 -07:00
'slade
'teamviewer
2019-07-12 09:00:02 -07:00
'ttf-mac-fonts
2019-06-11 18:11:37 -07:00
'ttf-twemoji-color
'xf86-input-xwiimote-git
2019-07-22 05:20:59 -07:00
'xwiimote-git))
2019-06-11 18:11:37 -07:00
(define package-options
(hash
2019-07-27 06:31:11 -07:00
'kmozillahelper
(hash 'asdeps #t)
'libsodium-git
(hash 'asdeps #t)
'vim-runtime-git
(hash 'asdeps #t)
2019-06-11 18:11:37 -07:00
'bsnes-plus-git
(hash 'url (mygit "bsnes-plus-git.git"))
2019-07-22 05:21:15 -07:00
'desmume-git
(hash 'url (mygit "desmume-git.git"))
2019-06-18 04:55:54 -07:00
'higan
(hash 'handle 'higan
'url (gitlab "higan/higan.git/"))
2019-07-27 06:31:11 -07:00
'minecraft-server-fabric
(hash 'url (mygit "minecraft-server-fabric.git"))
2019-07-19 18:58:25 -07:00
'otf-linjapona
(hash 'url (mygit "otf-linjapona.git"))
2019-07-27 06:31:11 -07:00
'ppsspp-git
(hash 'url (mygit "ppsspp-git.git"))
2019-06-18 04:55:54 -07:00
'quark-shaders
(hash 'handle 'higan-shaders
'url (github "hizzlekizzle/quark-shaders"))
'teamviewer
(hash 'url (mygit "teamviewer.git")
2019-07-27 06:31:11 -07:00
'branch "nmfix")))
2019-06-11 18:11:37 -07:00
;; EOF