blob: 8032d2a5f04197de36e14669c8444c07e27f1db2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# Description: ncurses based XMPP client
# URL: https://profanity-im.github.io/
# Maintainer: Shokara Kou, kou at 13f0 dot net
# Depends on: libstrophe ncurses glib curl readline sqlite3 libotr libgcrypt libsignal-protocol-c
name=profanity
version=0.12.1
release=1
source=(https://github.com/profanity-im/$name/releases/download/$version/$name-$version.tar.xz)
build() {
cd $name-$version
./configure \
--prefix=/usr \
--disable-python-plugins \
--disable-c-plugins \
--disable-plugins \
--enable-otr \
--enable-omemo
make
make DESTDIR=$PKG install
rm -fr $PKG/usr/share/doc
}
|