wok-current view loudmouth/receipt @ rev 24884

corrected recipe for loudmouth
author Hans-G?nter Theisgen
date Fri Apr 01 07:42:28 2022 +0100 (2022-04-01)
parents 8acd10ad5f1c
children 44c7e0b01b48
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 DEPENDS="glib gnutls"
16 BUILD_DEPENDS="autoconf glib-dev gnutls-dev libidn-dev libasyncns-dev libtool
17 pkg-config"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 ./autogen.sh -n &&
23 ./configure \
24 --with-asyncns=yes \
25 --prefix=/usr \
26 --infodir=/usr/share/info \
27 --localstatedir=/var &&
28 make &&
29 make install DESTDIR=$DESTDIR
30 }
32 # Rules to gen a SliTaz package suitable for Tazpkg.
33 genpkg_rules()
34 {
35 cook_copy_files *.so*
36 }