summaryrefslogtreecommitdiff
path: root/loudmouth/Pkgfile
diff options
context:
space:
mode:
Diffstat (limited to 'loudmouth/Pkgfile')
-rw-r--r--loudmouth/Pkgfile20
1 files changed, 20 insertions, 0 deletions
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}