40 lines
1.1 KiB
Bash
40 lines
1.1 KiB
Bash
# Template file for 'tcsh'
|
|
pkgname=tcsh
|
|
version=6.24.13
|
|
revision=1
|
|
build_style=gnu-configure
|
|
conf_files="/etc/csh.login /etc/csh.cshrc"
|
|
makedepends="ncurses-devel automake"
|
|
short_desc="Enhanced but compatible version of the Berkeley C shell"
|
|
maintainer="Leah Neukirchen <leah@vuxu.org>"
|
|
license="BSD-3-Clause"
|
|
homepage="https://www.tcsh.org/"
|
|
distfiles="https://astron.com/pub/${pkgname}/${pkgname}-${version}.tar.gz"
|
|
checksum=1e927d52e9c85d162bf985f24d13c6ccede9beb880d86fec492ed15480a5c71a
|
|
register_shell="/bin/tcsh /bin/csh"
|
|
|
|
if [ "$XBPS_TARGET_LIBC" = "glibc" ]; then
|
|
makedepends+=" libxcrypt-devel"
|
|
fi
|
|
|
|
post_extract() {
|
|
sed -i '/define BSDWAIT/d' sh.proc.c
|
|
}
|
|
pre_configure() {
|
|
case "$XBPS_TARGET_MACHINE" in
|
|
*-musl)
|
|
sed -e ';s/# undef SYSMALLOC/# define SYSMALLOC/g' -i config_f.h
|
|
;;
|
|
esac
|
|
}
|
|
pre_build() {
|
|
make CC_FOR_GETHOST="${BUILD_CC}" CFLAGS="${BUILD_CFLAGS}" gethost
|
|
}
|
|
post_install() {
|
|
vconf ${FILESDIR}/csh.login
|
|
vconf ${FILESDIR}/csh.cshrc
|
|
ln -s tcsh ${DESTDIR}/usr/bin/csh
|
|
ln -s tcsh.1 ${DESTDIR}/usr/share/man/man1/csh.1
|
|
vlicense Copyright LICENSE
|
|
}
|