wok view ecm/receipt @ rev 15874

Add acme
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Feb 03 11:54:56 2014 +0000 (2014-02-03)
parents 170bab8c0bcc
children 6e8b1bcb30e2
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="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 }