wok view tcl/receipt @ rev 11659

xfe, Improve receipt
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Sun Feb 12 22:40:16 2012 +0100 (2012-02-12)
parents 5f9ad8ee2c9a
children de49f29b101e
line source
1 # SliTaz package receipt.
3 PACKAGE="tcl"
4 VERSION="8.5.10"
5 CATEGORY="development"
6 SHORT_DESC="The Tool Command Language"
7 MAINTAINER="erjo@slitaz.org"
8 TARBALL="${PACKAGE}${VERSION}-src.tar.gz"
9 WEB_SITE="http://tcl.sourceforge.net/"
10 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
11 TAGS="language programming"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src/unix
17 ./configure \
18 --enable-shared \
19 --disable-symbols \
20 --mandir=/usr/share/man $CONFIGURE_ARGS && \
21 make && \
22 make install install-private-headers
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/lib
29 cp -a $_pkg/usr/lib/tcl8* $fs/usr/lib
30 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
31 cp -a $_pkg/usr/bin $fs/usr
32 ln -sf tclsh8.5 $fs/usr/bin/tclsh
33 }