wok view tcsh/receipt @ rev 15295

cdrtools: remove a wrong error trigger
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Sep 27 09:56:20 2013 +0000 (2013-09-27)
parents 4e0b93820dde
children de49f29b101e
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 mkdir -p $DESTDIR/usr/bin
18 touch $DESTDIR/usr/bin/tcsh
19 ./configure $CONFIGURE_ARGS &&
20 make &&
21 make install &&
22 rm -f $DESTDIR/usr/bin/tcsh.old
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/bin \
29 $fs/usr/share
31 cp -a $install/usr/bin/tcsh $fs/usr/bin
33 cp -ar $install/usr/share/locale $fs/usr/share
34 }