wok rev 24661

updated ii (1.6 -> 1.9)
author Hans-G?nter Theisgen
date Fri Mar 11 13:28:05 2022 +0100 (2022-03-11)
parents 7de87766c29c
children 36e4c2e537d5
files ii/description.txt ii/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/ii/description.txt	Fri Mar 11 13:28:05 2022 +0100
     1.3 @@ -0,0 +1,10 @@
     1.4 +ii is a minimalist FIFO and filesystem-based IRC client.
     1.5 +It creates an irc directory tree with server, channel and nick name
     1.6 +directories. In every directory a FIFO in file and a normal out
     1.7 +file is created.
     1.8 +
     1.9 +The in file is used to communicate with the servers and the out
    1.10 +files contain the server messages. For every channel and every nick
    1.11 +name there are related in and out files created.
    1.12 +This allows IRC communication from command line and adheres to the
    1.13 +Unix philosophy.
     2.1 --- a/ii/receipt	Fri Mar 11 10:09:19 2022 +0100
     2.2 +++ b/ii/receipt	Fri Mar 11 13:28:05 2022 +0100
     2.3 @@ -1,14 +1,14 @@
     2.4  # SliTaz package receipt.
     2.5  
     2.6  PACKAGE="ii"
     2.7 -VERSION="1.6"
     2.8 +VERSION="1.9"
     2.9  CATEGORY="network"
    2.10  SHORT_DESC="Minimalist IRC client."
    2.11  MAINTAINER="pascal.bellard@slitaz.org"
    2.12  LICENSE="MIT"
    2.13 +WEB_SITE="https://tools.suckless.org/ii/"
    2.14  TARBALL="$PACKAGE-$VERSION.tar.gz"
    2.15 -WEB_SITE="http://tools.suckless.org/ii"
    2.16 -WGET_URL="http://dl.suckless.org/tools/$TARBALL"
    2.17 +WGET_URL="https://dl.suckless.org/tools/$TARBALL"
    2.18  
    2.19  # What is the latest version available today?
    2.20  current_version()
    2.21 @@ -20,15 +20,13 @@
    2.22  # Rules to configure and make the package.
    2.23  compile_rules()
    2.24  {
    2.25 -	cd $src
    2.26 -	sed -i 's|/usr/local|/usr|' config.mk
    2.27 +	sed -i 's|/usr/local|/usr|'	config.mk
    2.28  	make clean &&
    2.29 -	make DESTDIR=$DESTDIR install
    2.30 +	make install DESTDIR=$DESTDIR
    2.31  }
    2.32  
    2.33  # Rules to gen a SliTaz package suitable for Tazpkg.
    2.34  genpkg_rules()
    2.35  {
    2.36 -	mkdir -p $fs/usr
    2.37 -	cp -a $install/usr/bin $fs/usr
    2.38 +	cook_copy_folders	bin
    2.39  }