wok view ecm/receipt @ rev 12005

iron: fixed icon, added description
author Samuel Trassare <samuel_trassare@yahoo.com>
date Mon Mar 05 10:38:40 2012 -0800 (2012-03-05)
parents 1dc033b25f22
children 1f49cc79cf1c
line source
1 # SliTaz package receipt.
3 PACKAGE="ecm"
4 VERSION="100"
5 CATEGORY="misc"
6 SHORT_DESC="Converts CD image files into a lossless format optimized for compression tools"
7 MAINTAINER="slaxemulator@gmail.com"
8 DEPENDS="glibc-base"
9 BUILD_DEPENDS="unzip"
10 TARBALL="${PACKAGE}${VERSION}.zip"
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
18 for i in ecm unecm; do
19 gcc $i.c -o $i
20 done
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/bin
27 cp -a $src/ecm $fs/usr/bin
28 cp -a $src/unecm $fs/usr/bin
29 }