wok annotate mcabber/receipt @ rev 8615
Fix: replace exit 1 by return 1 in receipts (exit broke cook-list function)
author | Antoine Bodin <gokhlayeh@slitaz.org> |
---|---|
date | Mon Feb 14 19:09:46 2011 +0100 (2011-02-14) |
parents | 2c679ce49f4c |
children | 19dcddc29280 |
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@1423 | 5 CATEGORY="network" |
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" |
pankso@3429 | 11 DEPENDS="libcrypto openssl glib gpgme libgpg-error ncurses" |
pascal@1514 | 12 BUILD_DEPENDS="libcrypto-dev openssl-dev glib glib-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@1458 | 19 --mandir=/usr/share/man $CONFIGURE_ARGS && |
pascal@1458 | 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 |
erjo@3552 | 28 cp -a $_pkg/usr/bin $fs/usr |
pascal@1116 | 29 } |
pascal@1116 | 30 |