wok view littleutils/receipt @ rev 18143

syslinux/taziso/floppyset: fix loram case
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Jun 17 19:05:26 2015 +0200 (2015-06-17)
parents
children 86790a278e70
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="http://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 }