wok annotate sic/receipt @ rev 19294

sane-backends, scons, scrot, shell-fm, smake, soundtouch, wireless_tools: fix man or doc path
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Jul 06 16:30:34 2016 +0200 (2016-07-06)
parents cad02130ef1c
children c5ddf763228a
rev   line source
pascal@9987 1 # SliTaz package receipt.
pascal@9987 2
pascal@9987 3 PACKAGE="sic"
pascal@9987 4 VERSION="1.1"
pascal@9987 5 CATEGORY="network"
pascal@9987 6 SHORT_DESC="Simple IRC client."
pascal@9987 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@15593 8 LICENSE="MIT"
pascal@9987 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@9987 10 WEB_SITE="http://tools.suckless.org/sic"
pascal@9987 11 WGET_URL="http://dl.suckless.org/tools/$TARBALL"
pascal@9987 12
pascal@9987 13 # Rules to configure and make the package.
pascal@9987 14 compile_rules()
pascal@9987 15 {
pascal@9987 16 cd $src
pascal@9987 17 make clean &&
pascal@9987 18 make PREFIX=/usr DESTDIR=$DESTDIR install
pascal@9987 19 }
pascal@9987 20
pascal@9987 21 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@9987 22 genpkg_rules()
pascal@9987 23 {
pascal@9987 24 mkdir -p $fs/usr
pascal@15593 25 cp -a $install/usr/bin $fs/usr
pascal@9987 26 }
pascal@9987 27