wok-current rev 25410
updated wimlib (1.13.1 -> 1.13.5)
author | Hans-G?nter Theisgen |
---|---|
date | Thu Aug 04 06:40:24 2022 +0100 (2022-08-04) |
parents | d644f4cecfbf |
children | 3a7e1f5c8913 |
files | wimlib/description.txt wimlib/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/wimlib/description.txt Thu Aug 04 06:40:24 2022 +0100 1.3 @@ -0,0 +1,9 @@ 1.4 +Wimlib is an open source, cross-platform library for creating, extracting, 1.5 +and modifying Windows Imaging (WIM) archives. 1.6 +WIM is a file archiving format, somewhat comparable to ZIP (and many other 1.7 +file archiving formats); but unlike ZIP, it allows storing various 1.8 +Windows-specific metadata, allows storing multiple "images" in a single 1.9 +archive, automatically deduplicates all file contents, and supports 1.10 +optional solid compression to get a better compression ratio. 1.11 +Wimlib and its command-line frontend wimlib-imagex provide a free and 1.12 +cross-platform alternative to Microsoft's WIMGAPI, ImageX, and DISM.
2.1 --- a/wimlib/receipt Wed Aug 03 17:56:22 2022 +0100 2.2 +++ b/wimlib/receipt Thu Aug 04 06:40:24 2022 +0100 2.3 @@ -1,7 +1,7 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="wimlib" 2.7 -VERSION="1.13.1" 2.8 +VERSION="1.13.5" 2.9 CATEGORY="utilities" 2.10 SHORT_DESC="Library to create, extract, and modify Windows Imaging (WIM) files." 2.11 MAINTAINER="pascal.bellard@slitaz.org" 2.12 @@ -26,13 +26,17 @@ 2.13 # Rules to configure and make the package. 2.14 compile_rules() 2.15 { 2.16 - ./configure --prefix=/usr $CONFIGURE_ARGS && 2.17 + ./configure \ 2.18 + --prefix=/usr \ 2.19 + $CONFIGURE_ARGS && 2.20 make && 2.21 - make DESTDIR=$DESTDIR install 2.22 + make install DESTDIR=$DESTDIR 2.23 } 2.24 2.25 # Rules to gen a SliTaz package suitable for Tazpkg. 2.26 genpkg_rules() 2.27 { 2.28 - cp -a $install/usr $fs 2.29 + cook_copy_folders bin 2.30 + cook_copy_folders include 2.31 + cook_copy_folders lib 2.32 }