wok-current diff socat/receipt @ rev 23766
qemu/cloop: tiny fix
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Wed May 06 19:55:46 2020 +0000 (2020-05-06) |
parents | 12d5088fe249 |
children | 83b97236db32 |
line diff
1.1 --- a/socat/receipt Sat Oct 05 21:31:52 2019 +0100 1.2 +++ b/socat/receipt Wed May 06 19:55:46 2020 +0000 1.3 @@ -1,7 +1,7 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="socat" 1.7 -VERSION="2.0.0-b8" 1.8 +VERSION="2.0.0-b9" 1.9 CATEGORY="network" 1.10 SHORT_DESC="Reads and writes data across network connections." 1.11 MAINTAINER="pascal.bellard@slitaz.org" 1.12 @@ -19,7 +19,9 @@ 1.13 # Rules to configure and make the package. 1.14 compile_rules() 1.15 { 1.16 - ./configure --prefix=/usr $CONFIGURE_ARGS && 1.17 + ./configure \ 1.18 + --prefix=/usr \ 1.19 + $CONFIGURE_ARGS && 1.20 make && 1.21 make DESTDIR=$DESTDIR install 1.22 } 1.23 @@ -28,5 +30,5 @@ 1.24 genpkg_rules() 1.25 { 1.26 mkdir -p $fs/usr 1.27 - cp -a $install/usr/bin $fs/usr 1.28 + cp -a $install/usr/bin $fs/usr 1.29 }