# HG changeset patch # User Hans-G?nter Theisgen # Date 1659591624 -3600 # Node ID 1b6e9e73cbed69317929ee895d60f1b2b0860f13 # Parent d644f4cecfbfe8961570813ef73917174dd73f2d updated wimlib (1.13.1 -> 1.13.5) diff -r d644f4cecfbf -r 1b6e9e73cbed wimlib/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/wimlib/description.txt Thu Aug 04 06:40:24 2022 +0100 @@ -0,0 +1,9 @@ +Wimlib is an open source, cross-platform library for creating, extracting, +and modifying Windows Imaging (WIM) archives. +WIM is a file archiving format, somewhat comparable to ZIP (and many other +file archiving formats); but unlike ZIP, it allows storing various +Windows-specific metadata, allows storing multiple "images" in a single +archive, automatically deduplicates all file contents, and supports +optional solid compression to get a better compression ratio. +Wimlib and its command-line frontend wimlib-imagex provide a free and +cross-platform alternative to Microsoft's WIMGAPI, ImageX, and DISM. diff -r d644f4cecfbf -r 1b6e9e73cbed wimlib/receipt --- a/wimlib/receipt Wed Aug 03 17:56:22 2022 +0100 +++ b/wimlib/receipt Thu Aug 04 06:40:24 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="wimlib" -VERSION="1.13.1" +VERSION="1.13.5" CATEGORY="utilities" SHORT_DESC="Library to create, extract, and modify Windows Imaging (WIM) files." MAINTAINER="pascal.bellard@slitaz.org" @@ -26,13 +26,17 @@ # Rules to configure and make the package. compile_rules() { - ./configure --prefix=/usr $CONFIGURE_ARGS && + ./configure \ + --prefix=/usr \ + $CONFIGURE_ARGS && make && - make DESTDIR=$DESTDIR install + make install DESTDIR=$DESTDIR } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - cp -a $install/usr $fs + cook_copy_folders bin + cook_copy_folders include + cook_copy_folders lib }