wok view ecm/receipt @ rev 21820

syslinux/kbd: check kbd malloc pointer
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Aug 25 11:41:26 2019 +0200 (2019-08-25)
parents 223b265f40fd
children 0b32f22bb251
line source
1 # SliTaz package receipt.
3 PACKAGE="ecm"
4 VERSION="1.03"
5 CATEGORY="misc"
6 SHORT_DESC="Converts CD image files into a lossless format optimized for compression tools"
7 MAINTAINER="slaxemulator@gmail.com"
8 LICENSE="GPL3"
9 SOURCE="cmdpack"
10 TARBALL="$SOURCE-${VERSION}-src.tar.gz"
11 WEB_SITE="https://web.archive.org/web/20140328062622/http://www.neillcorlett.com/ecm/"
12 WGET_URL="http://www.neillcorlett.com/downloads/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src/src
18 mkdir -p $DESTDIR/usr/bin
19 for i in *.c; do
20 echo "Compile $i..."
21 ./mkgcc ${i%.c} || return 1
22 cp -a ${i%.c} $DESTDIR/usr/bin
23 done
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/bin
30 cp -a $install/usr/bin/ecm $fs/usr/bin
31 ln -sf ecm $fs/usr/bin/unecm
32 }