blob: f326b83e542ac85e2c21049da735e20415152812 (
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
27
28
29
30
31
32
33
|
#!/bin/mkpkg
# description: Lightweight C library for writing XMPP clients
# url: https://strophe.im/libstrophe/
name=libstrophe
version=0.14.0
release=1
depends=(libressl expat)
source=(https://github.com/strophe/$name/releases/download/$version/$name-$version.tar.gz)
sha256sums=(
"d079668474d5c3aa4555347c33e77014a1071629603557cc506a6bc6f82e01f5"
)
build() {
cd $name-$version
./configure \
CC=clang \
--prefix=/usr \
--disable-static \
--with-libssl
make
make DESTDIR=$PKG install
# Remove docs
rm -rf $PKG/usr/share/doc
}
signify() {
untrusted comment: public key
RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
}
# vim: filetype=sh
|