wok view littleutils/receipt @ rev 20645

updated hostapd (2.6 -> 2.7)
author Hans-G?nter Theisgen
date Fri Jan 11 16:39:21 2019 +0100 (2019-01-11)
parents 80e8762db4bd
children ba24cd78b4ff
line source
1 # SliTaz package receipt.
3 PACKAGE="littleutils"
4 VERSION="1.0.32"
5 CATEGORY="misc"
6 SHORT_DESC="Image optimizers, archive recompressors, file property tools ..."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL3"
9 TARBALL="$PACKAGE-$VERSION.tar.xz"
10 WEB_SITE="https://sourceforge.net/projects/littleutils/"
11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
13 DEPENDS="bash perl"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 sed -i '/stdalign/d' littleutils/*.c
19 ./configure --prefix=/usr \
20 --sysconfdir=/etc \
21 $CONFIGURE_ARGS &&
22 make &&
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
30 cp -a $install/usr/bin $fs/usr
31 cp -a $install/usr/lib $fs/usr
32 }