wok-next view tcsh/receipt @ rev 19703

Up bird (1.6.3)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Apr 26 12:29:37 2017 +0200 (2017-04-26)
parents d9d7fcbb1ab3
children 777348fd8b60
line source
1 # SliTaz package receipt.
3 PACKAGE="tcsh"
4 VERSION="6.18.01"
5 CATEGORY="system-tools"
6 SHORT_DESC="Enhanced, compatible Berkeley UNIX C shell."
7 MAINTAINER="samuel_trassare@yahoo.com"
8 LICENSE="BSD"
9 WEB_SITE="http://www.tsch.org/Welcome"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WGET_URL="ftp://ftp.astron.com/pub/$PACKAGE/$TARBALL"
12 #The following build dep will be necessary when glibc ups to 2.14.
13 #BUILD_DEPENDS="libtirpc"
15 DEPENDS="ncurses"
16 BUILD_DEPENDS="ncurses-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 mkdir -p $DESTDIR/usr/bin
22 touch $DESTDIR/usr/bin/tcsh
23 ./configure $CONFIGURE_ARGS &&
24 make &&
25 make install &&
26 rm -f $DESTDIR/usr/bin/tcsh.old
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/bin \
33 $fs/usr/share
34 cp -a $install/usr/bin/tcsh $fs/usr/bin
35 cp -ar $install/usr/share/locale $fs/usr/share
36 }