# HG changeset patch # User Hans-G?nter Theisgen # Date 1648795961 -3600 # Node ID bd49261ff4bac4240f4fd5be8885891d6d1af14d # Parent 622f3fed2557bf6764a4494361dd9ea187f63424 updated mcabber (0.9.10 -> 1.1.2) diff -r 622f3fed2557 -r bd49261ff4ba mcabber/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mcabber/description.txt Fri Apr 01 07:52:41 2022 +0100 @@ -0,0 +1,5 @@ +Mcabber is a small XMPP (Jabber) console client. +Mcabber includes features such as SASL/SSL/TLS support, +MUC (Multi-User Chat) support, history logging, command completion, +OpenPGP encryption, OTR (Off-the-Record Messaging) support, +dynamic modules and external action triggers. diff -r 622f3fed2557 -r bd49261ff4ba mcabber/receipt --- a/mcabber/receipt Fri Apr 01 07:42:28 2022 +0100 +++ b/mcabber/receipt Fri Apr 01 07:52:41 2022 +0100 @@ -1,17 +1,19 @@ # SliTaz package receipt. PACKAGE="mcabber" -VERSION="0.9.10" +VERSION="1.1.2" CATEGORY="network" SHORT_DESC="Jabber console client." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="GPL2" +WEB_SITE="https://mcabber.com/" + TARBALL="$PACKAGE-$VERSION.tar.bz2" -WEB_SITE="http://lilotux.net/~mikael/mcabber" -WGET_URL="$WEB_SITE/files/$TARBALL" +WGET_URL="${WEB_SITE}files/$TARBALL" -DEPENDS="libcrypto openssl glib gpgme libgpg-error ncurses" -BUILD_DEPENDS="ncurses-dev glib-dev" +SUGGESTED="mcabber-help" +DEPENDS="glib gpgme libasyncns libcrypto libgpg-error loudmouth ncurses openssl" +BUILD_DEPENDS="glib-dev libasyncns-dev loudmouth-dev ncurses-dev" # What is the latest version available today? current_version() @@ -23,14 +25,13 @@ # Rules to configure and make the package. compile_rules() { - cd $src - ./configure && make && make install + ./configure && + make && + make install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr - cp -a $install/usr/bin $fs/usr + cook_copy_folders bin } -