wok-current diff mcabber/receipt @ rev 24948
updated nagios-nrpe again (4.0.2 -> 4.0.3)
author | Hans-G?nter Theisgen |
---|---|
date | Fri Apr 22 17:47:12 2022 +0100 (2022-04-22) |
parents | 83b97236db32 |
children |
line diff
1.1 --- a/mcabber/receipt Sat Feb 12 11:42:56 2022 +0000 1.2 +++ b/mcabber/receipt Fri Apr 22 17:47:12 2022 +0100 1.3 @@ -1,17 +1,19 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="mcabber" 1.7 -VERSION="0.9.10" 1.8 +VERSION="1.1.2" 1.9 CATEGORY="network" 1.10 SHORT_DESC="Jabber console client." 1.11 MAINTAINER="pascal.bellard@slitaz.org" 1.12 LICENSE="GPL2" 1.13 +WEB_SITE="https://mcabber.com/" 1.14 + 1.15 TARBALL="$PACKAGE-$VERSION.tar.bz2" 1.16 -WEB_SITE="http://lilotux.net/~mikael/mcabber" 1.17 -WGET_URL="$WEB_SITE/files/$TARBALL" 1.18 +WGET_URL="${WEB_SITE}files/$TARBALL" 1.19 1.20 -DEPENDS="libcrypto openssl glib gpgme libgpg-error ncurses" 1.21 -BUILD_DEPENDS="ncurses-dev glib-dev" 1.22 +SUGGESTED="mcabber-help" 1.23 +DEPENDS="glib gpgme libasyncns libcrypto libgpg-error loudmouth ncurses openssl" 1.24 +BUILD_DEPENDS="glib-dev libasyncns-dev loudmouth-dev ncurses-dev" 1.25 1.26 # What is the latest version available today? 1.27 current_version() 1.28 @@ -23,14 +25,13 @@ 1.29 # Rules to configure and make the package. 1.30 compile_rules() 1.31 { 1.32 - cd $src 1.33 - ./configure && make && make install 1.34 + ./configure && 1.35 + make && 1.36 + make install 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 1.43 - cp -a $install/usr/bin $fs/usr 1.44 + cook_copy_folders bin 1.45 } 1.46 -