wok view loudmouth/receipt @ rev 24883

created recipes for loudmouth and loudmouth-dev
author Hans-G?nter Theisgen
date Fri Apr 01 07:38:03 2022 +0100 (2022-04-01)
parents
children 622f3fed2557
line source
1 # SliTaz package receipt.
3 PACKAGE="loudmouth"
4 VERSION="1.5.4"
5 CATEGORY="libs"
6 TAGS="jabber"
7 SHORT_DESC="A lightweight Jabber client library."
8 MAINTAINER="maintainer@slitaz.org"
9 LICENSE="LGPL2+"
10 WEB_SITE="https://github.com/mcabber/loudmouth"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 WGET_URL="$WEB_SITE/archive/refs/tags/$VERSION.tar.gz"
15 BUILD_DEPENDS="autoconfglib-dev gnutls-dev libidn-dev libasyncns-dev libtool
16 pkg-config"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 ./autogen.sh -n &&
22 ./configure \
23 --with-asyncns=yes \
24 --prefix=/usr \
25 --infodir=/usr/share/info \
26 --localstatedir=/var &&
27 make &&
28 make install DESTDIR=$DESTDIR
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 cook_copy_files *.so*
35 }