wok diff 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 diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/loudmouth/receipt	Fri Apr 01 07:38:03 2022 +0100
     1.3 @@ -0,0 +1,35 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="loudmouth"
     1.7 +VERSION="1.5.4"
     1.8 +CATEGORY="libs"
     1.9 +TAGS="jabber"
    1.10 +SHORT_DESC="A lightweight Jabber client library."
    1.11 +MAINTAINER="maintainer@slitaz.org"
    1.12 +LICENSE="LGPL2+"
    1.13 +WEB_SITE="https://github.com/mcabber/loudmouth"
    1.14 +
    1.15 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.16 +WGET_URL="$WEB_SITE/archive/refs/tags/$VERSION.tar.gz"
    1.17 +
    1.18 +BUILD_DEPENDS="autoconfglib-dev gnutls-dev libidn-dev libasyncns-dev libtool
    1.19 +	pkg-config"
    1.20 +
    1.21 +# Rules to configure and make the package.
    1.22 +compile_rules()
    1.23 +{
    1.24 +	./autogen.sh -n &&
    1.25 +	./configure				\
    1.26 +		--with-asyncns=yes		\
    1.27 +		--prefix=/usr			\
    1.28 +		--infodir=/usr/share/info	\
    1.29 +		--localstatedir=/var &&
    1.30 +	make &&
    1.31 +	make install DESTDIR=$DESTDIR
    1.32 +}
    1.33 +
    1.34 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.35 +genpkg_rules()
    1.36 +{
    1.37 +	cook_copy_files	*.so*
    1.38 +}