wok annotate ii/receipt @ rev 11341

fail2ban: enable ssh filter
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Nov 26 15:38:48 2011 +0100 (2011-11-26)
parents
children de49f29b101e
rev   line source
pascal@9986 1 # SliTaz package receipt.
pascal@9986 2
pascal@9986 3 PACKAGE="ii"
pascal@9986 4 VERSION="1.6"
pascal@9986 5 CATEGORY="network"
pascal@9986 6 SHORT_DESC="Minimalist IRC client."
pascal@9986 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@9986 8 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@9986 9 WEB_SITE="http://tools.suckless.org/ii"
pascal@9986 10 WGET_URL="http://dl.suckless.org/tools/$TARBALL"
pascal@9986 11
pascal@9986 12 # Rules to configure and make the package.
pascal@9986 13 compile_rules()
pascal@9986 14 {
pascal@9986 15 cd $src
pascal@9986 16 sed -i 's|/usr/local|/usr|' config.mk
pascal@9986 17 make clean &&
pascal@9986 18 make DESTDIR=$DESTDIR install
pascal@9986 19 }
pascal@9986 20
pascal@9986 21 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@9986 22 genpkg_rules()
pascal@9986 23 {
pascal@9986 24 mkdir -p $fs/usr
pascal@9986 25 cp -a $_pkg/usr/bin $fs/usr
pascal@9986 26 }
pascal@9986 27