wok view ecm/receipt @ rev 8687

Fix bdep: remmina need intltool to compile
author Antoine Bodin <gokhlayeh@slitaz.org>
date Thu Feb 17 18:59:15 2011 +0100 (2011-02-17)
parents aecece5740c6
children e64069568fe7
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 for i in ecm unecm; do
18 gcc $i.c -o $i
19 done
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr/bin
26 cp -a $src/ecm $fs/usr/bin
27 cp -a $src/unecm $fs/usr/bin
28 }