# HG changeset patch # User Hans-G?nter Theisgen # Date 1647001685 -3600 # Node ID b6f35b7563f0befacff9c5a3350c9b80860e71db # Parent 7de87766c29c9de32f50f2df249405e8ea425225 updated ii (1.6 -> 1.9) diff -r 7de87766c29c -r b6f35b7563f0 ii/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/ii/description.txt Fri Mar 11 13:28:05 2022 +0100 @@ -0,0 +1,10 @@ +ii is a minimalist FIFO and filesystem-based IRC client. +It creates an irc directory tree with server, channel and nick name +directories. In every directory a FIFO in file and a normal out +file is created. + +The in file is used to communicate with the servers and the out +files contain the server messages. For every channel and every nick +name there are related in and out files created. +This allows IRC communication from command line and adheres to the +Unix philosophy. diff -r 7de87766c29c -r b6f35b7563f0 ii/receipt --- a/ii/receipt Fri Mar 11 10:09:19 2022 +0100 +++ b/ii/receipt Fri Mar 11 13:28:05 2022 +0100 @@ -1,14 +1,14 @@ # SliTaz package receipt. PACKAGE="ii" -VERSION="1.6" +VERSION="1.9" CATEGORY="network" SHORT_DESC="Minimalist IRC client." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="MIT" +WEB_SITE="https://tools.suckless.org/ii/" TARBALL="$PACKAGE-$VERSION.tar.gz" -WEB_SITE="http://tools.suckless.org/ii" -WGET_URL="http://dl.suckless.org/tools/$TARBALL" +WGET_URL="https://dl.suckless.org/tools/$TARBALL" # What is the latest version available today? current_version() @@ -20,15 +20,13 @@ # Rules to configure and make the package. compile_rules() { - cd $src - sed -i 's|/usr/local|/usr|' config.mk + sed -i 's|/usr/local|/usr|' config.mk make clean && - make DESTDIR=$DESTDIR install + make install DESTDIR=$DESTDIR } # 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 }