wok-current view icoutils/receipt @ rev 13338

Add icoutils
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Sep 05 14:45:15 2012 +0200 (2012-09-05)
parents
children e2ec61dec110
line source
1 # SliTaz package receipt.
3 PACKAGE="icoutils"
4 VERSION="0.30.0"
5 CATEGORY="misc"
6 SHORT_DESC="Microsoft Windows icon and cursor files convertion tools."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 WEB_SITE="http://www.nongnu.org/icoutils"
10 WGET_URL="http://savannah.nongnu.org/download/$PACKAGE/$TARBALL"
11 #http://savannah.nongnu.org/download/icoutils/icoutils-0.30.0.tar.bz2
13 DEPENDS="png"
14 BUILD_DEPENDS="png-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure --prefix=/usr --mandir=/usr/share/man \
21 --localstatedir=/var \
22 $CONFIGURE_ARGS &&
23 make &&
24 make -j 1 DESTDIR=$DESTDIR install
25 return 1
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr
32 cp -a $_pkg/usr/bin $fs/usr
33 }