mirror of
https://github.com/gentoo-mirror/guru.git
synced 2025-04-20 00:08:58 -04:00
32 lines
513 B
Bash
32 lines
513 B
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="1.0.0"
|
|
|
|
SYMLINK_DESCRIPTION="default scheme implementations"
|
|
SYMLINK_PATH="/usr/bin/scheme"
|
|
SYMLINK_TARGETS=(
|
|
chezscheme chicken
|
|
elk escm
|
|
guile gsi gxi
|
|
jscheme
|
|
plt-r5rs
|
|
racket
|
|
scheme48 scm
|
|
tinyscheme
|
|
ypsilon
|
|
)
|
|
|
|
|
|
inherit bin-symlink
|
|
|
|
do_unset() {
|
|
rm -f "${SYMLINK_PATH}"
|
|
}
|