blob: 17501ab8bbd1e00507ffd364c77a960d4923ce61 (
plain)
1 # Description: a C/C++ client library for the CMIS protocol
2 # URL: https://github.com/tdf/libcmis
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on: boost brotli cppunit gnutls keyutils libpsl libxml2 openldap rtmpdump
5
6 name=libcmis
7 version=0.5.2
8 release=1
9 source=(https://github.com/tdf/libcmis/releases/download/v${version}/$name-$version.tar.gz)
10
11 build() {
12 cd $name-$version
13 ./configure --prefix=/usr \
14 --disable-werror \
15 --with-man=no
16 make
17 make DESTDIR=$PKG install
18 }
|