wok view iksemel/receipt @ rev 21824

syslinux/taziso: floppy by floppy fallback
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Sep 10 09:01:01 2019 +0200 (2019-09-10)
parents de49f29b101e
children e476e0df1ff7
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="https://github.com/meduketto/iksemel"
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 }