contrib/libcmis/Pkgfile

23 lines
556 B
Plaintext
Raw Normal View History

2019-08-11 11:13:56 +02:00
# Description: a C/C++ client library for the CMIS protocol
# URL: https://github.com/tdf/libcmis
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: boost brotli cppunit gnutls keyutils libpsl libxml2 openldap
2019-08-11 11:13:56 +02:00
name=libcmis
2023-11-14 07:02:37 +01:00
version=0.6.2
2023-11-25 22:26:55 +01:00
release=2
source=(https://github.com/tdf/libcmis/releases/download/v${version}/$name-$version.tar.gz
libxml2-2.12.patch)
2019-08-11 11:13:56 +02:00
build() {
cd $name-$version
2022-07-17 19:32:48 +02:00
2023-11-25 22:26:55 +01:00
patch -Np1 -i $SRC/libxml2-2.12.patch
2019-08-11 11:13:56 +02:00
./configure --prefix=/usr \
--disable-werror \
--with-man=no
make
make DESTDIR=$PKG install
}