wok-next view tcsh/receipt @ rev 21469

updated tinc (1.0.25 -> 1.0.36)
author Hans-G?nter Theisgen
date Wed May 13 07:41:00 2020 +0100 (2020-05-13)
parents d5aab818505e
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="tcsh"
4 VERSION="6.18.01"
5 CATEGORY="system-tools"
6 SHORT_DESC="Enhanced, compatible Berkeley UNIX C shell"
7 MAINTAINER="devel@slitaz.org"
8 LICENSE="BSD"
9 WEB_SITE="https://github.com/tcsh-org/tcsh" # http://www.tsch.org/Welcome
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="ftp://ftp.astron.com/pub/$PACKAGE/$TARBALL"
14 #The following build dep will be necessary when glibc up to 2.14: libtirpc
15 BUILD_DEPENDS="ncurses-dev"
17 compile_rules() {
18 sed -i 's/(__ANDROID__)/& \&\& !defined(__GLIBC__)/' sh.proc.c
19 mkdir -p $install/usr/bin
20 touch $install/usr/bin/tcsh
22 ./configure $CONFIGURE_ARGS &&
23 make &&
24 make install || return 1
26 rm -f $install/usr/bin/tcsh.old
27 }
29 genpkg_rules() {
30 copy @std
31 DEPENDS="ncurses"
32 }