mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-07-05 11:08:49 +08:00
18 lines
521 B
TOML
18 lines
521 B
TOML
[source]
|
|
git = "https://github.com/fish-shell/fish-shell"
|
|
rev = "54e8ad7e90a8213c01ba58de0640223bee6846d6"
|
|
patches = ["redox.patch"]
|
|
|
|
[build]
|
|
template = "custom"
|
|
dependencies = ["gettext", "ncursesw", "pcre"]
|
|
script = """
|
|
DYNAMIC_INIT
|
|
|
|
# The only default enabled feature is building the man pages.
|
|
# However, that requires sphinx so it can just be enabled later.
|
|
cookbook_cargo --no-default-features
|
|
mkdir -p "${COOKBOOK_STAGE}/usr/share/fish"
|
|
rsync -a "${COOKBOOK_SOURCE}/share/" "${COOKBOOK_STAGE}/usr/share/fish/"
|
|
"""
|