wok view iksemel/receipt @ rev 15597

Update some bdeps with pkg-config
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Dec 05 11:43:50 2013 +0000 (2013-12-05)
parents d4b11bc7b0e1
children de49f29b101e
line source
1 # SliTaz package receipt.
3 PACKAGE="iksemel"
4 VERSION="1.2"
5 CATEGORY="network"
6 SHORT_DESC="XML parser library for Jabber applications."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 WEB_SITE="http://iksemel.jabberstudio.org/"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WGET_URL="http://jabberstudio.rediris.es/$PACKAGE/$TARBALL"
12 DEPENDS="gnutls libgcrypt libgpg-error zlib pkg-config"
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/lib
28 cp -a $_pkg/usr/bin $fs/usr
29 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
30 cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib
31 }