wok-next diff tcpick/receipt @ rev 21020

Cleaning is almost finished... I should proceed to upgrades.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Nov 02 14:15:08 2018 +0200 (2018-11-02)
parents 8cf349cc0a47
children
line diff
     1.1 --- a/tcpick/receipt	Thu Apr 27 13:48:01 2017 +0200
     1.2 +++ b/tcpick/receipt	Fri Nov 02 14:15:08 2018 +0200
     1.3 @@ -4,7 +4,7 @@
     1.4  VERSION="0.2.1"
     1.5  CATEGORY="network"
     1.6  SHORT_DESC="TCP stream sniffer and connection tracker"
     1.7 -MAINTAINER="slaxemulator@gmail.com"
     1.8 +MAINTAINER="devel@slitaz.org"
     1.9  LICENSE="GPL2"
    1.10  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.11  WEB_SITE="http://tcpick.sourceforge.net/"
    1.12 @@ -13,17 +13,16 @@
    1.13  DEPENDS="libpcap"
    1.14  BUILD_DEPENDS="libpcap-dev"
    1.15  
    1.16 -# Rules to configure and make the package.
    1.17 -compile_rules()
    1.18 -{
    1.19 +compile_rules() {
    1.20  	sed -i 's/__inline__//' src/*.c
    1.21 -	./configure --mandir=/usr/share/man && make && make install
    1.22 +	./configure \
    1.23 +		--mandir=/usr/share/man \
    1.24 +		&&
    1.25 +	make &&
    1.26 +	make install
    1.27  }
    1.28  
    1.29 -# Rules to gen a SliTaz package suitable for Tazpkg.
    1.30 -genpkg_rules()
    1.31 -{
    1.32 +genpkg_rules() {
    1.33  	mkdir -p $fs/usr
    1.34  	cp -a $install/usr/bin $fs/usr
    1.35  }
    1.36 -