wok view tcsh/receipt @ rev 14236

fontconfig-infinality-yad: use 'tazbox su' instead of 'subox'
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Mar 22 13:38:27 2013 +0000 (2013-03-22)
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 }