wok-4.x view ecm/receipt @ rev 12477

Up openssl 1.1.1n (bump packages curl, git, wget, python), up cherokee 1.2.104 and bdeps (automake, openldap, cyrus-sasl)
author Stanislas Leduc <shann@slitaz.org>
date Sun Apr 02 14:34:44 2023 +0000 (14 months ago)
parents 1dc033b25f22
children
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 }