# HG changeset patch # User Pascal Bellard # Date 1549365405 -3600 # Node ID 66abd4536e3f6ddcc2ac998b06bd594b6350dba7 # Parent 834e153416f0b9c292c4eeb2b6e8d81549f69903 Add cddetect & nrg2iso diff -r 834e153416f0 -r 66abd4536e3f cddetect/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/cddetect/receipt Tue Feb 05 12:16:45 2019 +0100 @@ -0,0 +1,28 @@ +# SliTaz package receipt. + +PACKAGE="cddetect" +VERSION="2.1" +CATEGORY="system-tools" +SHORT_DESC="Tries to detect the type of a CD/DVD without mounting it" +MAINTAINER="pascal.bellard@slitaz.org" +LICENSE="GPL2" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://www.bellut.net/projects.html#cddetect" +WGET_URL="http://www.bellut.net/files/$TARBALL" +TAGS="CD DVD" + +# Rules to configure and make the package. +compile_rules() +{ + #sed -i 's|-Wall|& -Wno-pointer-sign|' Makefile + sed -i 's//&\n#include /' cddetect.c + make +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/bin + cp $src/cddetect $fs/usr/bin +} + diff -r 834e153416f0 -r 66abd4536e3f nrg2iso/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/nrg2iso/receipt Tue Feb 05 12:16:45 2019 +0100 @@ -0,0 +1,26 @@ +# SliTaz package receipt. + +PACKAGE="nrg2iso" +VERSION="0.4" +CATEGORY="system-tools" +SHORT_DESC="Convert CD (or DVD) image generated by Nero Burning Rom to ISO format" +MAINTAINER="pascal.bellard@slitaz.org" +LICENSE="GPL2" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://gregory.kokanosky.free.fr/v4/linux/nrg2iso.en.html" +WGET_URL="http://gregory.kokanosky.free.fr/v4/linux/$TARBALL" +TAGS="CD DVD ISO9660" + +# Rules to configure and make the package. +compile_rules() +{ + make +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/bin + cp $src/nrg2iso $fs/usr/bin +} + diff -r 834e153416f0 -r 66abd4536e3f slitaz-boot-scripts/receipt --- a/slitaz-boot-scripts/receipt Mon Feb 04 01:44:39 2019 -0500 +++ b/slitaz-boot-scripts/receipt Tue Feb 05 12:16:45 2019 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="slitaz-boot-scripts" -VERSION="451" +VERSION="453" CATEGORY="base-system" SHORT_DESC="Provide all the initialisation scripts used at boot time." MAINTAINER="pankso@slitaz.org"