summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShokara Kou <kou@13f0.net>2022-05-13 18:01:02 -0400
committerShokara Kou <kou@13f0.net>2022-12-10 16:12:53 -0500
commit45ecaed8e199598c0c0949595ec4ee47a3a3668d (patch)
treec108a0daf69a3387bd352c7d10f0fea393dbeac0
parent0282d076929a2efe983d6a455447d9dae7c46f65 (diff)
add loudmouth
-rw-r--r--loudmouth/.footprint21
-rw-r--r--loudmouth/.md5sum1
-rw-r--r--loudmouth/Pkgfile20
3 files changed, 42 insertions, 0 deletions
diff --git a/loudmouth/.footprint b/loudmouth/.footprint
new file mode 100644
index 0000000..c7ce64f
--- /dev/null
+++ b/loudmouth/.footprint
@@ -0,0 +1,21 @@
1drwxr-xr-x root/root usr/
2drwxr-xr-x root/root usr/include/
3drwxr-xr-x root/root usr/include/loudmouth-1.0/
4drwxr-xr-x root/root usr/include/loudmouth-1.0/loudmouth/
5-rw-r--r-- root/root usr/include/loudmouth-1.0/loudmouth/lm-connection.h
6-rw-r--r-- root/root usr/include/loudmouth-1.0/loudmouth/lm-error.h
7-rw-r--r-- root/root usr/include/loudmouth-1.0/loudmouth/lm-message-handler.h
8-rw-r--r-- root/root usr/include/loudmouth-1.0/loudmouth/lm-message-node.h
9-rw-r--r-- root/root usr/include/loudmouth-1.0/loudmouth/lm-message.h
10-rw-r--r-- root/root usr/include/loudmouth-1.0/loudmouth/lm-proxy.h
11-rw-r--r-- root/root usr/include/loudmouth-1.0/loudmouth/lm-ssl.h
12-rw-r--r-- root/root usr/include/loudmouth-1.0/loudmouth/lm-utils.h
13-rw-r--r-- root/root usr/include/loudmouth-1.0/loudmouth/loudmouth.h
14drwxr-xr-x root/root usr/lib/
15-rw-r--r-- root/root usr/lib/libloudmouth-1.a
16-rwxr-xr-x root/root usr/lib/libloudmouth-1.la
17lrwxrwxrwx root/root usr/lib/libloudmouth-1.so -> libloudmouth-1.so.0.1.0
18lrwxrwxrwx root/root usr/lib/libloudmouth-1.so.0 -> libloudmouth-1.so.0.1.0
19-rwxr-xr-x root/root usr/lib/libloudmouth-1.so.0.1.0
20drwxr-xr-x root/root usr/lib/pkgconfig/
21-rw-r--r-- root/root usr/lib/pkgconfig/loudmouth-1.0.pc
diff --git a/loudmouth/.md5sum b/loudmouth/.md5sum
new file mode 100644
index 0000000..0c44e63
--- /dev/null
+++ b/loudmouth/.md5sum
@@ -0,0 +1 @@
59c9f9f8e6231f38e18876447c608620 loudmouth-1.5.4.tar.bz2
diff --git a/loudmouth/Pkgfile b/loudmouth/Pkgfile
new file mode 100644
index 0000000..06498b2
--- /dev/null
+++ b/loudmouth/Pkgfile
@@ -0,0 +1,20 @@
1# Description: lightweight & easy-to-use C library for XMPP
2# URL: https://github.com/mcabber/loudmouth
3# Maintainer: Shokara Kou, kou at 13f0 dot net
4# Depends on: glib openssl
5
6name=loudmouth
7version=1.5.4
8release=1
9source=(https://mcabber.com/files/$name/$name-$version.tar.bz2)
10
11build() {
12 cd $name-$version
13
14 CFLAGS=-Wno-error=deprecated-declarations ./configure \
15 --prefix=/usr \
16 --with-ssl=openssl
17
18 make
19 make DESTDIR=$PKG install
20}