wok diff etherape/receipt @ rev 24713
Add some current_version
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Mon Mar 14 18:23:09 2022 +0000 (2022-03-14) |
parents | 640a2eba2511 |
children | aa66605526f6 |
line diff
1.1 --- a/etherape/receipt Mon Feb 07 11:38:23 2022 +0000 1.2 +++ b/etherape/receipt Mon Mar 14 18:23:09 2022 +0000 1.3 @@ -1,7 +1,7 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="etherape" 1.7 -VERSION="0.9.18" 1.8 +VERSION="0.9.20" 1.9 CATEGORY="network" 1.10 TAGS="ip monitoring network tcp vlan wlan" 1.11 SHORT_DESC="A graphical network monitor and visualization tool." 1.12 @@ -12,11 +12,13 @@ 1.13 TARBALL="$PACKAGE-$VERSION.tar.gz" 1.14 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 1.15 1.16 -DEPENDS="gtk+3 libglade libgnome libpcap libgnomeui libltdl 1.17 - libcrypto libxslt libgnome-keyring util-linux-uuid" 1.18 -BUILD_DEPENDS="glib-dev glibc-dev gnome-doc-utils-dev goocanvas 1.19 - goocanvas-dev gtk+3-dev itstool libcrypto-dev libglade-dev 1.20 - libgnome-dev libgnomeui-dev libpcap-dev libtool libxslt-dev 1.21 +SUGGESTED="etherape-lang" 1.22 +DEPENDS="goocanvas gtk+3 libcrypto libglade libgnome libpcap 1.23 + libgnome-keyring libgnomeui libltdl libxml2 libxslt 1.24 + util-linux-uuid" 1.25 +BUILD_DEPENDS="glib-dev glibc-dev gnome-doc-utils-dev goocanvas-dev 1.26 + gtk+3-dev itstool libcrypto-dev libglade-dev libgnome-dev 1.27 + libgnomeui-dev libpcap-dev libtool libxml2-dev libxslt-dev 1.28 ossp-uuid-dev" 1.29 1.30 # What is the latest version available today? 1.31 @@ -40,22 +42,23 @@ 1.32 --build=$ARCH-slitaz-linux \ 1.33 --disable-scrollkeeper 1.34 make && 1.35 - make DESTDIR=$DESTDIR install 1.36 + make install DESTDIR=$DESTDIR 1.37 } 1.38 1.39 # Rules to gen a SliTaz package suitable for Tazpkg. 1.40 genpkg_rules() 1.41 { 1.42 - mkdir -p $fs/usr/bin 1.43 mkdir -p $fs/usr/share 1.44 1.45 - cp -a $install/usr/bin/* $fs/usr/bin 1.46 - cp -a $install/usr/share/* $fs/usr/share 1.47 + cook_copy_folders bin 1.48 + cp -a $install/usr/share/applications $fs/usr/share 1.49 + cp -a $install/usr/share/etherape $fs/usr/share 1.50 + cp -a $install/usr/share/pixmaps $fs/usr/share 1.51 } 1.52 1.53 post_install() 1.54 { 1.55 # The SliTaz use Tazbox. 1.56 - sed -i 's/^Exec=.*/Exec=tazbox su dbus-launch etherape/' \ 1.57 + sed -i 's|^Exec=.*|Exec=tazbox su dbus-launch etherape|' \ 1.58 $1/usr/share/applications/etherape.desktop 1.59 }