wok annotate 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
rev   line source
pascal@13338 1 # SliTaz package receipt.
pascal@13338 2
pascal@13338 3 PACKAGE="icoutils"
Hans-G?nter@21042 4 VERSION="0.32.3"
pascal@13338 5 CATEGORY="misc"
pascal@13338 6 SHORT_DESC="Microsoft Windows icon and cursor files convertion tools."
pascal@13338 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@14999 8 LICENSE="GPL3"
Hans-G?nter@21042 9 WEB_SITE="https://www.nongnu.org/icoutils/"
Hans-G?nter@21042 10
pascal@13338 11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
pascal@13338 12 WGET_URL="http://savannah.nongnu.org/download/$PACKAGE/$TARBALL"
pascal@13338 13
pascal@13339 14 DEPENDS="libpng"
pascal@13339 15 BUILD_DEPENDS="libpng-dev libpng"
pascal@13338 16
pascal@13338 17 # Rules to configure and make the package.
pascal@13338 18 compile_rules()
pascal@13338 19 {
Hans-G?nter@21042 20 ./configure \
Hans-G?nter@21042 21 --prefix=/usr \
Hans-G?nter@21042 22 --mandir=/usr/share/man \
pascal@13338 23 $CONFIGURE_ARGS &&
Hans-G?nter@21042 24 make -j 1 &&
pascal@13339 25 make DESTDIR=$DESTDIR install
pascal@13338 26 }
pascal@13338 27
pascal@13338 28 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@13338 29 genpkg_rules()
pascal@13338 30 {
pascal@13338 31 mkdir -p $fs/usr
pascal@14999 32 cp -a $install/usr/bin $fs/usr
pascal@13338 33 }