wok view iksemel/receipt @ rev 19657

Up tazpkg (938)
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Jan 27 12:28:54 2017 +0200 (2017-01-27)
parents 8ed62ecac0c7
children 8dd8bab3f0ca
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 LICENSE="LGPL2.1"
9 WEB_SITE="http://iksemel.jabberstudio.org/"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WGET_URL="http://jabberstudio.rediris.es/$PACKAGE/$TARBALL"
13 DEPENDS="gnutls libgcrypt libgpg-error zlib pkg-config"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure --prefix=/usr --infodir=/usr/share/info \
20 --mandir=/usr/share/man $CONFIGURE_ARGS &&
21 make &&
22 make DESTDIR=$DESTDIR install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/lib
29 cp -a $install/usr/bin $fs/usr
30 cp -a $install/usr/lib/*.so* $fs/usr/lib
31 cp -a $install/usr/lib/pkgconfig $fs/usr/lib
32 }