wok view littleutils/receipt @ rev 21368

updated littleutils (1.0.32 -> 1.0.41)
author Hans-G?nter Theisgen
date Sun Apr 21 17:17:34 2019 +0100 (2019-04-21)
parents 86790a278e70
children 77985554a151
line source
1 # SliTaz package receipt.
3 PACKAGE="littleutils"
4 VERSION="1.0.41"
5 CATEGORY="misc"
6 SHORT_DESC="Image optimizers, archive recompressors, file property tools ..."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL3"
9 WEB_SITE="https://sourceforge.net/projects/littleutils/"
11 TARBALL="$PACKAGE-$VERSION.tar.xz"
12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
14 DEPENDS="bash perl"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 sed -i '/stdalign/d' littleutils/*.c
21 ./configure \
22 --prefix=/usr \
23 --sysconfdir=/etc \
24 $CONFIGURE_ARGS &&
25 make -j 1 &&
26 make DESTDIR=$DESTDIR install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr
34 cp -a $install/usr/bin $fs/usr
35 cp -a $install/usr/lib $fs/usr
36 }