35 lines
997 B
Bash
35 lines
997 B
Bash
# Template file for 'tcsh'
|
|
pkgname=tcsh
|
|
version=6.22.02
|
|
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="http://www.tcsh.org/"
|
|
distfiles="ftp://ftp.astron.com/pub/${pkgname}/${pkgname}-${version}.tar.gz"
|
|
checksum=ed287158ca1b00ba477e8ea57bac53609838ebcfd05fcb05ca95021b7ebe885b
|
|
register_shell="/bin/tcsh /bin/csh"
|
|
|
|
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
|
|
}
|