wok view ccd2iso/receipt @ rev 21620

linld: more ram for zImage
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat May 25 13:19:35 2019 +0200 (2019-05-25)
parents
children 9af0e03b8ad0
line source
1 # SliTaz package receipt.
3 PACKAGE="ccd2iso"
4 VERSION="0.3"
5 CATEGORY="misc"
6 SHORT_DESC="CloneCD image (.img) to ISO image file converter."
7 MAINTAINER="hackdorte@sapo.pt"
8 LICENSE="GPL2"
9 SUGGESTED="bchunk"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="https://sourceforge.net/projects/ccd2iso/"
12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
13 TAGS="convert img iso"
15 DEPENDS="glibc-base"
16 BUILD_DEPENDS="glibc-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 ./configure --prefix=/usr \
22 $CONFIGURE_ARGS &&
23 make $MAKEFLAGS &&
24 make DESTDIR=$DESTDIR install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/bin
31 cp -a $install/usr/bin/* $fs/usr/bin
32 }