scripts/build-system/rebuild-pkgs.rkt

87 lines
1.7 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)
(define (mygit a) (~a "https://git.greyserv.net/packages/" a))
2019-06-18 04:55:54 -07:00
(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
'embree2
'kmozillahelper
2019-06-11 18:11:37 -07:00
'libsodium-git
'wxgtk2-tb
2019-06-11 18:11:37 -07:00
2019-08-12 15:51:24 -07:00
'applyppf
'basiliskii-git
'bsnes-plus-git
'cc65
2019-07-01 13:49:23 -07:00
'crosstool-ng-git
'ericw-tools
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-09-11 23:37:12 -07:00
'gmqcc-git
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
'maxcso
'megasync
2019-06-11 18:11:37 -07:00
'megatools
'minecraft-launcher
2019-06-18 04:55:54 -07:00
'minecraft-server-fabric
2019-06-11 18:11:37 -07:00
'motsognir
2019-08-20 18:01:37 -07:00
'ndstrim
2019-06-11 18:11:37 -07:00
'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
'prboom-plus
2019-07-27 03:24:41 -07:00
'previous-svn
'qjoypad
'quakespasm
2019-09-10 08:34:16 -07:00
'quakespasm-spiked-git
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
'trenchbroom
2019-06-11 18:11:37 -07:00
'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
'yamagi-quake2
2019-08-25 05:25:12 -07:00
'zdoom))
2019-06-11 18:11:37 -07:00
(define package-options
(hash
'embree2 (hash 'asdeps #t)
'kmozillahelper (hash 'asdeps #t)
'libsodium-git (hash 'asdeps #t)
'wxgtk2-tb (hash 'asdeps #t)
2019-06-11 18:11:37 -07:00
'bsnes-plus-git
(hash 'url (mygit "bsnes-plus-git.git"))
2019-09-11 23:37:12 -07:00
'gmqcc-git
(hash 'url (mygit "gmqcc-git.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"))
'quakespasm
(hash 'url (mygit "quakespasm.git"))
'quakespasm-spiked-git
(hash 'url (mygit "quakespasm-spiked-git.git"))))
2019-06-11 18:11:37 -07:00
;; EOF