wok view icoutils/receipt @ rev 23899

busybox: add crontabs in CONFIG_FILES
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Jul 28 08:34:55 2020 +0000 (2020-07-28)
parents dead8955c3ca
children 17091bc7c301
line source
1 # SliTaz package receipt.
3 PACKAGE="icoutils"
4 VERSION="0.32.3"
5 CATEGORY="misc"
6 SHORT_DESC="Microsoft Windows icon and cursor files convertion tools."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL3"
9 WEB_SITE="https://www.nongnu.org/icoutils/"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WGET_URL="http://savannah.nongnu.org/download/$PACKAGE/$TARBALL"
14 DEPENDS="libpng"
15 BUILD_DEPENDS="libpng-dev libpng"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure \
21 --prefix=/usr \
22 --mandir=/usr/share/man \
23 $CONFIGURE_ARGS &&
24 make -j 1 &&
25 make DESTDIR=$DESTDIR install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr
32 cp -a $install/usr/bin $fs/usr
33 }