wok view mcabber/receipt @ rev 3930

Update: binutils (toolprefixed binaries with default binutil symlinks; needed for builds expecting toolprefixed binutil binaries when a target platform [e.g. i486-pc-linux-gnu] is specified)
author Matthew Sheets <rcx@zoominternet.net>
date Wed Aug 19 16:02:07 2009 +0000 (2009-08-19)
parents 2c679ce49f4c
children 19dcddc29280
line source
1 # SliTaz package receipt.
3 PACKAGE="mcabber"
4 VERSION="0.9.7"
5 CATEGORY="network"
6 SHORT_DESC="Jabber console client."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 WEB_SITE="http://lilotux.net/~mikael/mcabber"
10 WGET_URL="$WEB_SITE/files/$TARBALL"
11 DEPENDS="libcrypto openssl glib gpgme libgpg-error ncurses"
12 BUILD_DEPENDS="libcrypto-dev openssl-dev glib glib-dev"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure --prefix=/usr --infodir=/usr/share/info \
19 --mandir=/usr/share/man $CONFIGURE_ARGS &&
20 make &&
21 make DESTDIR=$PWD/_pkg install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr
28 cp -a $_pkg/usr/bin $fs/usr
29 }