5cefb35598
Add changelog
29 lines
970 B
Bash
29 lines
970 B
Bash
# Template file for 'fish-shell'
|
|
pkgname=fish-shell
|
|
version=3.3.0
|
|
revision=1
|
|
wrksrc="fish-${version}"
|
|
build_style=cmake
|
|
hostmakedepends="gettext"
|
|
makedepends="ncurses-devel pcre2-devel"
|
|
depends="groff"
|
|
checkdepends="python3-pexpect procps-ng"
|
|
short_desc="User friendly shell intended mostly for interactive use"
|
|
maintainer="Nathan Owens <ndowens04@gmail.com>"
|
|
license="GPL-2.0-only"
|
|
homepage="https://fishshell.com/"
|
|
changelog="https://github.com/fish-shell/fish-shell/raw/master/CHANGELOG.rst"
|
|
distfiles="https://github.com/fish-shell/fish-shell/releases/download/${version}/fish-${version}.tar.xz"
|
|
checksum=a4215e4cab2a5b101b0b8843720bda3c7eb98e8a14dca0950b8ef17e94282faa
|
|
register_shell="/bin/fish /usr/bin/fish"
|
|
# tests don't work as root
|
|
make_check=ci-skip
|
|
|
|
if [ "$XBPS_TARGET_NO_ATOMIC8" ]; then
|
|
makedepends+=" libatomic-devel"
|
|
fi
|
|
|
|
post_install() {
|
|
# Starting with fish-3.0.0 this is a skeleton file with only comments
|
|
rm "${DESTDIR}/usr/etc/fish/config.fish"
|
|
}
|