33 lines
999 B
Bash
33 lines
999 B
Bash
# Template file for 'yash'
|
|
pkgname=yash
|
|
version=2.47
|
|
revision=1
|
|
build_style=configure
|
|
configure_args="--prefix=/usr"
|
|
makedepends="ncurses-devel"
|
|
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=931f2e7451d8b1eca2a98caeef7eda0527d96376f9f2c9bec90bc5938e39992e
|
|
make_build_args="LDLIBS=-lm LDLIBS+=${XBPS_CROSS_BASE}/usr/lib/libncursesw.a"
|
|
register_shell="/bin/yash"
|
|
alternatives="
|
|
sh:sh:/usr/bin/yash
|
|
sh:sh.1:/usr/share/man/man1/yash.1"
|
|
|
|
post_extract() {
|
|
sed -i '40i#undef iswdigit' arith.c # macro in musl
|
|
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
|
|
}
|