wok-current rev 24721
updated libburn and libburn-dev (1.5.2 -> 1.5.4)
author | Hans-G?nter Theisgen |
---|---|
date | Tue Mar 15 09:33:23 2022 +0100 (2022-03-15) |
parents | d75b8343bc3e |
children | dac38080ab6b |
files | libburn-dev/receipt libburn/description.txt libburn/receipt |
line diff
1.1 --- a/libburn-dev/receipt Tue Mar 15 08:04:34 2022 +0100 1.2 +++ b/libburn-dev/receipt Tue Mar 15 09:33:23 2022 +0100 1.3 @@ -1,12 +1,12 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="libburn-dev" 1.7 -VERSION="1.5.2" 1.8 +VERSION="1.5.4" 1.9 CATEGORY="development" 1.10 SHORT_DESC="Library for reading, mastering and writing optical disks - development files." 1.11 MAINTAINER="devl547@gmail.com" 1.12 LICENSE="GPL2" 1.13 -WEB_SITE="https://dev.lovelyhq.com/libburnia/libburn" 1.14 +WEB_SITE="https://dev.lovelyhq.com/libburnia/web/wiki" 1.15 1.16 DEPENDS="libburn pkg-config" 1.17 WANTED="libburn" 1.18 @@ -14,10 +14,5 @@ 1.19 # Rules to gen a SliTaz package suitable for Tazpkg. 1.20 genpkg_rules() 1.21 { 1.22 - mkdir -p $fs/usr/lib 1.23 - 1.24 - cp -a $install/usr/include $fs/usr 1.25 - cp -a $install/usr/lib/*a $fs/usr/lib 1.26 - cp -a $install/usr/lib/pkgconfig $fs/usr/lib 1.27 - cp -a $install/usr/share $fs/usr 1.28 + get_dev_files 1.29 }
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/libburn/description.txt Tue Mar 15 09:33:23 2022 +0100 2.3 @@ -0,0 +1,15 @@ 2.4 +Libburn is a library by which preformatted data get onto optical media: 2.5 +CD, DVD, BD (Blu-Ray). 2.6 +On Linux it uses either /dev/sgN (on kernel 2.4 with ide-scsi, or 2.7 +optional with concurrent operation of multiple drives) or /dev/srM 2.8 +(kernel 2.6 and newer), /dev/hdX ( on kernel 2.6). 2.9 + 2.10 +Libburn also offers a facility for reading data blocks from its drives 2.11 +without using the normal block device i/o, which has its advantages and 2.12 +disadvantages. It seems appropriate, nevertheless, to do writing and 2.13 +reading via the same channel. 2.14 +On several Linux systems, the block device driver needs reloading of the 2.15 +drive tray in order to make available freshly written data. 2.16 +The libburn read function does not need such a reload. 2.17 + 2.18 +Audio CD can be written and read.
3.1 --- a/libburn/receipt Tue Mar 15 08:04:34 2022 +0100 3.2 +++ b/libburn/receipt Tue Mar 15 09:33:23 2022 +0100 3.3 @@ -1,12 +1,12 @@ 3.4 # SliTaz package receipt. 3.5 3.6 PACKAGE="libburn" 3.7 -VERSION="1.5.2" 3.8 +VERSION="1.5.4" 3.9 CATEGORY="utilities" 3.10 SHORT_DESC="Library for reading, mastering and writing optical disks." 3.11 MAINTAINER="devl547@gmail.com" 3.12 LICENSE="GPL2" 3.13 -WEB_SITE="https://dev.lovelyhq.com/libburnia/libburn" 3.14 +WEB_SITE="https://dev.lovelyhq.com/libburnia/web/wiki" 3.15 3.16 TARBALL="$PACKAGE-$VERSION.tar.gz" 3.17 WGET_URL="http://files.libburnia-project.org/releases/$TARBALL" 3.18 @@ -23,12 +23,11 @@ 3.19 { 3.20 ./configure $CONFIGURE_ARGS && 3.21 make && 3.22 - make -j1 DESTDIR=$DESTDIR install 3.23 + make install DESTDIR=$DESTDIR 3.24 } 3.25 3.26 # Rules to gen a SliTaz package suitable for Tazpkg. 3.27 genpkg_rules() 3.28 { 3.29 - mkdir -p $fs/usr/lib 3.30 - cp -a $install/usr/lib/*.so* $fs/usr/lib 3.31 + cook_copy_files *.so* 3.32 }