void-packages/srcpkgs/yash/template

38 lines
1023 B
Bash

# Template file for 'yash'
pkgname=yash
version=2.56.1
revision=1
build_style=configure
configure_args="--prefix=/usr"
make_build_args="LDLIBS=-lm LDLIBS+=${XBPS_CROSS_BASE}/usr/lib/libncursesw.a"
makedepends="ncurses-devel"
checkdepends="ed procps-ng util-linux"
short_desc="Yet another shell (POSIX-compliant)"
maintainer="Leah Neukirchen <leah@vuxu.org>"
license="GPL-2.0-or-later"
homepage="http://yash.osdn.jp/"
changelog="https://github.com/magicant/yash/releases"
distfiles="https://github.com/magicant/${pkgname}/releases/download/${version}/${pkgname}-${version}.tar.xz"
checksum=f7f5a1ffd246692568e4823a59b20357317d92663573bd1099254c0c89de71f5
alternatives="
sh:sh:/usr/bin/yash
sh:sh.1:/usr/share/man/man1/yash.1"
register_shell="/bin/yash"
post_extract() {
if [ "$CROSS_BUILD" ]; then
sed -i 's/checkby "${tempout}"/true/' configure
fi
}
pre_build() {
if [ "$CROSS_BUILD" ]; then
make CC="$BUILD_CC" CFLAGS="$BUILD_CFLAGS" \
LDFLAGS= LDLIBS= makesignum
fi
}
pre_check() {
export LOGNAME=root
}