mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-09 15:13:31 -04:00
Package-Manager: Portage-3.0.18, Repoman-3.0.2 Signed-off-by: Maciej Barć <xgqt@riseup.net>
40 lines
1.0 KiB
Bash
40 lines
1.0 KiB
Bash
#!/bin/sh
|
|
|
|
|
|
# Copyright 1999-2021 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
|
DESCRIPTION="Manages scheme implementations"
|
|
MAINTAINER="xgqt@riseup.net"
|
|
VERSION="2.0.0"
|
|
|
|
SYMLINK_DESCRIPTION="default scheme"
|
|
SYMLINK_PATH="/usr/bin/scheme"
|
|
SYMLINK_TARGETS=(
|
|
chezscheme # chezscheme
|
|
chibi-scheme # chibi
|
|
chicken csi # chicken
|
|
cyclone icyc # cyclone
|
|
elk # elk
|
|
escm # escm
|
|
gosh # gauche
|
|
gsi # gambit
|
|
guile # guile
|
|
gxi # gerbil
|
|
jscheme # jscheme
|
|
plt-r5rs racket # racket
|
|
scheme48 # scheme48
|
|
scm # scm
|
|
stklos # stklos
|
|
tinyscheme # tinyscheme
|
|
ypsilon # ypsilon
|
|
)
|
|
|
|
|
|
inherit bin-symlink
|
|
|
|
do_unset() {
|
|
rm -f "${SYMLINK_PATH}"
|
|
}
|