wok-next diff socat/receipt @ rev 21428
updated qt5 (5.10.1 -> 5.14.2)
author | Hans-G?nter Theisgen |
---|---|
date | Tue May 05 08:54:54 2020 +0100 (2020-05-05) |
parents | c4e53a39395a |
children | 19d587b23dbe |
line diff
1.1 --- a/socat/receipt Fri Mar 02 12:12:14 2018 +0200 1.2 +++ b/socat/receipt Tue May 05 08:54:54 2020 +0100 1.3 @@ -3,30 +3,26 @@ 1.4 PACKAGE="socat" 1.5 VERSION="2.0.0-b7" 1.6 CATEGORY="network" 1.7 -SHORT_DESC="Reads and writes data across network connections." 1.8 +SHORT_DESC="Reads and writes data across network connections" 1.9 MAINTAINER="pascal.bellard@slitaz.org" 1.10 LICENSE="GPL2" 1.11 +WEB_SITE="http://www.dest-unreach.org/socat/" 1.12 + 1.13 TARBALL="$PACKAGE-$VERSION.tar.gz" 1.14 -WEB_SITE="http://www.dest-unreach.org/$PACKAGE/" 1.15 WGET_URL="${WEB_SITE}download/$TARBALL" 1.16 -HOST_ARCH="i486 x86_64" 1.17 1.18 BUILD_DEPENDS="openssl-dev ncurses-dev" 1.19 -DEPENDS="openssl ncurses libwrap readline" 1.20 1.21 -# Rules to configure and make the package. 1.22 -compile_rules() 1.23 -{ 1.24 - cd $src 1.25 - ./configure --prefix=/usr $CONFIGURE_ARGS && 1.26 +compile_rules() { 1.27 + ./configure \ 1.28 + --prefix=/usr \ 1.29 + $CONFIGURE_ARGS && 1.30 make && 1.31 - make DESTDIR=$DESTDIR install 1.32 + make DESTDIR=$install install 1.33 } 1.34 1.35 -# Rules to gen a SliTaz package suitable for Tazpkg. 1.36 -genpkg_rules() 1.37 -{ 1.38 +genpkg_rules() { 1.39 mkdir -p $fs/usr 1.40 cp -a $install/usr/bin $fs/usr 1.41 + DEPENDS="openssl ncurses libwrap readline" 1.42 } 1.43 -