wok annotate iksemel/receipt @ rev 22857

updated gmp and gmp-dev (6.1.2 -> 6.2.0)
author Hans-G?nter Theisgen
date Thu Feb 20 14:33:27 2020 +0100 (2020-02-20)
parents de49f29b101e
children e476e0df1ff7
rev   line source
pascal@1177 1 # SliTaz package receipt.
pascal@1177 2
pascal@1177 3 PACKAGE="iksemel"
pascal@1177 4 VERSION="1.2"
pascal@1177 5 CATEGORY="network"
pascal@1177 6 SHORT_DESC="XML parser library for Jabber applications."
pascal@1177 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@15600 8 LICENSE="LGPL2.1"
pascal@20672 9 WEB_SITE="https://github.com/meduketto/iksemel"
pascal@1177 10 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@1177 11 WGET_URL="http://jabberstudio.rediris.es/$PACKAGE/$TARBALL"
pascal@1177 12
pascal@15597 13 DEPENDS="gnutls libgcrypt libgpg-error zlib pkg-config"
pascal@15597 14
pascal@1177 15 # Rules to configure and make the package.
pascal@1177 16 compile_rules()
pascal@1177 17 {
pascal@1177 18 cd $src
pascal@1177 19 ./configure --prefix=/usr --infodir=/usr/share/info \
pascal@2481 20 --mandir=/usr/share/man $CONFIGURE_ARGS &&
pascal@2481 21 make &&
pascal@15600 22 make DESTDIR=$DESTDIR install
pascal@1177 23 }
pascal@1177 24
pascal@1177 25 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@1177 26 genpkg_rules()
pascal@1177 27 {
pascal@1177 28 mkdir -p $fs/usr/lib
pascal@15600 29 cp -a $install/usr/bin $fs/usr
pascal@15600 30 cp -a $install/usr/lib/*.so* $fs/usr/lib
pascal@15600 31 cp -a $install/usr/lib/pkgconfig $fs/usr/lib
pascal@1177 32 }
pascal@1177 33