scripts/build-system/rebuild-pkgs.rkt

101 lines
1.9 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
'dolphin-emu-git
2019-08-28 14:24:17 -07:00
'f3
'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
2019-08-25 05:24:58 -07:00
'gtk3-nocsd-git
2019-06-11 18:11:37 -07:00
'gvim-git
'higan
'maxcso
'mednaffe
'megasync
2019-06-11 18:11:37 -07:00
'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-08-20 18:01:37 -07:00
'ndstrim
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
'pkgtop-git
2019-06-11 18:11:37 -07:00
'ppsspp-git
'prboom-plus
2019-07-27 03:24:41 -07:00
'previous-svn
'qjoypad
2019-09-10 08:34:16 -07:00
'quakespasm-spiked-git
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
'ttf-twemoji-color
2019-09-04 14:44:36 -07:00
'uade
2019-06-11 18:11:37 -07:00
'xf86-input-xwiimote-git
2019-08-25 05:25:12 -07:00
'xwiimote-git
'zdoom))
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-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"))))
2019-06-11 18:11:37 -07:00
;; EOF