56 lines
1.0 KiB
TOML
56 lines
1.0 KiB
TOML
[build]
|
|
type = "cmake"
|
|
|
|
[build.flags]
|
|
build_dir = "build"
|
|
configure = [
|
|
"-DWITH_DOCS=ON",
|
|
"-DFISH_USE_SYSTEM_PCRE2=ON",
|
|
"-DWITH_MESSAGE_LOCALIZATION=ON",
|
|
"-Wno-dev",
|
|
]
|
|
keep = [ "etc/fish/config.fish" ]
|
|
use_lto = false
|
|
|
|
[dependencies]
|
|
build = [
|
|
"cmake",
|
|
"jq",
|
|
"rust",
|
|
"python-sphinx",
|
|
]
|
|
optional = [
|
|
"python",
|
|
"groff",
|
|
"mandoc",
|
|
"xsel",
|
|
"xclip",
|
|
"wl-clipboard",
|
|
]
|
|
runtime = [
|
|
"glibc",
|
|
"libunwind",
|
|
"pcre2",
|
|
]
|
|
test = [
|
|
"expect",
|
|
"procps-ng",
|
|
"python-pexpect",
|
|
]
|
|
|
|
[package]
|
|
description = "Smart and user friendly shell intended mostly for interactive use"
|
|
homepage = "https://fishshell.com/"
|
|
license = "GPL-2.0-only AND BSD-3-Clause AND ISC AND MIT AND PSF-2.0"
|
|
name = "fish"
|
|
version = "4.5.0"
|
|
revision = 2
|
|
|
|
[[source]]
|
|
extract_dir = "$name-$version"
|
|
url = "https://github.com/fish-shell/fish-shell#$version"
|
|
patches = [ "fish-4.5.0-depot-command-not-found.patch" ]
|
|
|
|
[[manual_sources]]
|
|
files = [ "fish-4.5.0-depot-command-not-found.patch", "postinstall.sh", "postupdate.sh", "postremove.sh" ]
|