wok view tcsh/receipt @ rev 15600

Add some licenses
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Dec 05 15:25:09 2013 +0000 (2013-12-05)
parents aa4f4cb93068
children d9d7fcbb1ab3
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 # Rules to configure and make the package.
16 compile_rules()
17 {
18 mkdir -p $DESTDIR/usr/bin
19 touch $DESTDIR/usr/bin/tcsh
20 ./configure $CONFIGURE_ARGS &&
21 make &&
22 make install &&
23 rm -f $DESTDIR/usr/bin/tcsh.old
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/bin \
30 $fs/usr/share
32 cp -a $install/usr/bin/tcsh $fs/usr/bin
34 cp -ar $install/usr/share/locale $fs/usr/share
35 }