wok view icoutils/receipt @ rev 22859

updated gnaughty (1.2.4 -> 1.2.5)
author Hans-G?nter Theisgen
date Thu Feb 20 14:50:56 2020 +0100 (2020-02-20)
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 }