wok view tcsh/receipt @ rev 13309

Move from undigest shake
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Aug 29 10:51:37 2012 +0200 (2012-08-29)
parents b65a0f238bd5
children aa4f4cb93068
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 WEB_SITE="http://www.tsch.org/Welcome"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WGET_URL="ftp://ftp.astron.com/pub/$PACKAGE/$TARBALL"
11 #The following build dep will be necessary when glibc ups to 2.14.
12 #BUILD_DEPENDS="libtirpc"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 ./configure $CONFIGURE_ARGS &&
18 make &&
19 make install
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr/bin \
26 $fs/usr/share
28 cp -a $install/usr/bin/tcsh $fs/usr/bin
30 cp -ar $install/usr/share/locale $fs/usr/share
31 }