wok diff mcabber/receipt @ rev 25073
Up dropbear (2022.82)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sat Jun 11 11:22:52 2022 +0000 (2022-06-11) |
parents | 83b97236db32 |
children |
line diff
1.1 --- a/mcabber/receipt Sat Feb 12 11:42:56 2022 +0000 1.2 +++ b/mcabber/receipt Sat Jun 11 11:22:52 2022 +0000 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 -