wok view tcllib/receipt @ rev 20995

updated gputils (0.14.3 -> 1.5.0.1)
author Hans-G?nter Theisgen
date Thu Mar 07 17:47:51 2019 +0100 (2019-03-07)
parents f8e9bf4989d3
children 7dbabbb8d2fe
line source
1 # SliTaz package receipt.
3 PACKAGE="tcllib"
4 VERSION="1.12"
5 CATEGORY="development"
6 SHORT_DESC="Tcl-only library of standard routines for Tcl."
7 MAINTAINER="paul@slitaz.org"
8 LICENSE="BSD"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="https://sourceforge.net/projects/tcllib/"
11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
12 HOST_ARCH="i486 arm"
14 DEPENDS="tcl"
15 BUILD_DEPENDS="tcl"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure \
21 --prefix=/usr \
22 $CONFIGURE_ARGS &&
23 make DESTDIR=$DESTDIR install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/lib
30 cp -a $install/usr/bin $fs/usr
31 cp -a $install/usr/lib/* $fs/usr/lib
32 }