wok annotate mcabber/receipt @ rev 1834
slitaz-loram: depends on cromfs-or-squashfs
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Wed Dec 10 19:40:03 2008 +0000 (2008-12-10) |
parents | cb884d540a01 |
children | cde7fa93f1d6 |
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" |
pascal@1116 | 11 DEPENDS="libcrypto openssl" |
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 |
pascal@1116 | 28 cp -a $_pkg/usr/bin $fs |
pascal@1116 | 29 } |
pascal@1116 | 30 |