wok view ecm/receipt @ rev 21549
Add LXSession 0.4.6.* as lxsession046 (latest LXSession 0.4.* is 0.4.9.* and it don't compile anyway due to the old libgee; and latest LXSession 0.5.* (just lxsession) has the major drawbacks)
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Tue May 07 11:25:44 2019 +0300 (2019-05-07) |
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 }