wok diff unetbootin/receipt @ rev 24020

linld: fix iso9660/64
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Mar 06 18:15:05 2021 +0000 (2021-03-06)
parents ad58a2dfd4b8
children 5ea0ce1cecc0
line diff
     1.1 --- a/unetbootin/receipt	Tue Oct 29 16:35:55 2019 +0100
     1.2 +++ b/unetbootin/receipt	Sat Mar 06 18:15:05 2021 +0000
     1.3 @@ -1,7 +1,7 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="unetbootin"
     1.7 -VERSION="675"
     1.8 +VERSION="677"
     1.9  CATEGORY="system-tools"
    1.10  SHORT_DESC="Create bootable Live USB drives for a variety of Linux distributions."
    1.11  MAINTAINER="pascal.bellard@slitaz.org"
    1.12 @@ -19,15 +19,20 @@
    1.13  compile_rules()
    1.14  {
    1.15  	cd $src/src/unetbootin
    1.16 -	sed -i 's/Cooking/Rolling/' distrover*.cpp
    1.17 -	sed -i 's/^\(.*\)"gpxe"\(.*\)$/&\n\1"ipxe"\2/' distrolst.cpp
    1.18 -	sed -i 's/"rootfs.gz"/& << "rootfs1.gz" << "rootfs2.gz" << "rootfs3.gz" << "rootfs4.gz"/' unetbootin.cpp
    1.19 -	sed -i '/^RESOURCES/d' unetbootin.pro
    1.20 -	sed -i '/^RESOURCES/d' unetbootin.pro
    1.21 +	sed -i 's/Cooking/Rolling/' \
    1.22 +		distrover*.cpp
    1.23 +	sed -i 's/^\(.*\)"gpxe"\(.*\)$/&\n\1"ipxe"\2/' \
    1.24 +		distrolst.cpp
    1.25 +	sed -i 's/"rootfs.gz"/& << "rootfs1.gz" << "rootfs2.gz" << "rootfs3.gz" << "rootfs4.gz"/' \
    1.26 +		unetbootin.cpp
    1.27 +	sed -i '/^RESOURCES/d' \
    1.28 +		unetbootin.pro
    1.29 +	sed -i '/^RESOURCES/d' \
    1.30 +		unetbootin.pro
    1.31  	lupdate unetbootin.pro
    1.32  	lrelease unetbootin.pro
    1.33 -	qmake "DEFINES += NOSTATIC" "RESOURCES -= unetbootin.qrc"
    1.34 -	make
    1.35 +	qmake "DEFINES += NOSTATIC" "RESOURCES -= unetbootin.qrc" &&
    1.36 +	make &&
    1.37  	upx unetbootin
    1.38  }
    1.39