wok view cdrtools/receipt @ rev 20289

elilo: force ia32 (again)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Apr 10 13:11:07 2018 +0200 (2018-04-10)
parents bef53513f3c4
children 9dbba587fe4e
line source
1 # SliTaz package receipt.
3 PACKAGE="cdrtools"
4 VERSION="3.00"
5 CATEGORY="multimedia"
6 SHORT_DESC="Command line programs to record CD/DVD/BluRay media."
7 MAINTAINER="paul@slitaz.org"
8 LICENSE="GPL2 LGPL2.1"
9 WEB_SITE="http://cdrecord.berlios.de/private/cdrecord.html"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WGET_URL="ftp://ftp.berlios.de/pub/cdrecord/$TARBALL"
13 DEPENDS=""
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 # hack makefile
19 cd $src/DEFAULTS
20 sed -i 's/DEFINSGRP= bin/DEFINSGRP= root/' Defaults.linux
21 cd ..
22 {
23 ./configure
24 make && make DESTDIR=$DESTDIR install
25 } 2>&1 | sed 's/: No such/: no such/'
27 mkdir -p $install/usr
28 mv $install/opt/schily/* $install/usr
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 mkdir -p $fs/usr/lib $fs/usr/share
35 cp -a $install/etc $fs
36 cp -a $install/usr/bin $fs/usr
37 cp -a $install/usr/sbin $fs/usr
38 cp -a $install/usr/lib/siconv $fs/usr/lib
39 cp -a $install/usr/share/doc $fs/usr/share
40 }