wok annotate mcabber/receipt @ rev 1116

Add mcabber mcabber-help
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Jul 20 11:43:38 2008 +0000 (2008-07-20)
parents
children 03a799424aaa
rev   line source
pascal@1116 1 # SliTaz package receipt.
pascal@1116 2
pascal@1116 3 PACKAGE="mcabber"
pascal@1116 4 VERSION="0.9.7"
pascal@1116 5 CATEGORY="netwok"
pascal@1116 6 SHORT_DESC="Jabber console client."
pascal@1116 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@1116 8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
pascal@1116 9 WEB_SITE="http://lilotux.net/~mikael/mcabber"
pascal@1116 10 WGET_URL="$WEB_SITE/files/$TARBALL"
pascal@1116 11 DEPENDS="libcrypto openssl"
pascal@1116 12 BUILD_DEPENDS="libcrypto-dev openssl-dev"
pascal@1116 13
pascal@1116 14 # Rules to configure and make the package.
pascal@1116 15 compile_rules()
pascal@1116 16 {
pascal@1116 17 cd $src
pascal@1116 18 ./configure --prefix=/usr --infodir=/usr/share/info \
pascal@1116 19 --mandir=/usr/share/man $CONFIGURE_ARGS
pascal@1116 20 make
pascal@1116 21 make DESTDIR=$PWD/_pkg install
pascal@1116 22 }
pascal@1116 23
pascal@1116 24 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@1116 25 genpkg_rules()
pascal@1116 26 {
pascal@1116 27 mkdir -p $fs/usr
pascal@1116 28 cp -a $_pkg/usr/bin $fs
pascal@1116 29 }
pascal@1116 30