commit 45ecaed8e199598c0c0949595ec4ee47a3a3668d parent 0282d076929a2efe983d6a455447d9dae7c46f65 Author: Shokara Kou <kou@13f0.net> Date: Fri, 13 May 2022 18:01:02 -0400 add loudmouth Diffstat:
| A | loudmouth/.footprint | | | 21 | +++++++++++++++++++++ |
| A | loudmouth/.md5sum | | | 1 | + |
| A | loudmouth/Pkgfile | | | 20 | ++++++++++++++++++++ |
3 files changed, 42 insertions(+), 0 deletions(-)
diff --git a/loudmouth/.footprint b/loudmouth/.footprint @@ -0,0 +1,21 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/include/ +drwxr-xr-x root/root usr/include/loudmouth-1.0/ +drwxr-xr-x root/root usr/include/loudmouth-1.0/loudmouth/ +-rw-r--r-- root/root usr/include/loudmouth-1.0/loudmouth/lm-connection.h +-rw-r--r-- root/root usr/include/loudmouth-1.0/loudmouth/lm-error.h +-rw-r--r-- root/root usr/include/loudmouth-1.0/loudmouth/lm-message-handler.h +-rw-r--r-- root/root usr/include/loudmouth-1.0/loudmouth/lm-message-node.h +-rw-r--r-- root/root usr/include/loudmouth-1.0/loudmouth/lm-message.h +-rw-r--r-- root/root usr/include/loudmouth-1.0/loudmouth/lm-proxy.h +-rw-r--r-- root/root usr/include/loudmouth-1.0/loudmouth/lm-ssl.h +-rw-r--r-- root/root usr/include/loudmouth-1.0/loudmouth/lm-utils.h +-rw-r--r-- root/root usr/include/loudmouth-1.0/loudmouth/loudmouth.h +drwxr-xr-x root/root usr/lib/ +-rw-r--r-- root/root usr/lib/libloudmouth-1.a +-rwxr-xr-x root/root usr/lib/libloudmouth-1.la +lrwxrwxrwx root/root usr/lib/libloudmouth-1.so -> libloudmouth-1.so.0.1.0 +lrwxrwxrwx root/root usr/lib/libloudmouth-1.so.0 -> libloudmouth-1.so.0.1.0 +-rwxr-xr-x root/root usr/lib/libloudmouth-1.so.0.1.0 +drwxr-xr-x root/root usr/lib/pkgconfig/ +-rw-r--r-- root/root usr/lib/pkgconfig/loudmouth-1.0.pc diff --git a/loudmouth/.md5sum b/loudmouth/.md5sum @@ -0,0 +1 @@ +59c9f9f8e6231f38e18876447c608620 loudmouth-1.5.4.tar.bz2 diff --git a/loudmouth/Pkgfile b/loudmouth/Pkgfile @@ -0,0 +1,20 @@ +# Description: lightweight & easy-to-use C library for XMPP +# URL: https://github.com/mcabber/loudmouth +# Maintainer: Shokara Kou, kou at 13f0 dot net +# Depends on: glib openssl + +name=loudmouth +version=1.5.4 +release=1 +source=(https://mcabber.com/files/$name/$name-$version.tar.bz2) + +build() { + cd $name-$version + + CFLAGS=-Wno-error=deprecated-declarations ./configure \ + --prefix=/usr \ + --with-ssl=openssl + + make + make DESTDIR=$PKG install +}