|
|
|
# Maintainer: Michael Manley <mmanley@nasutek.com>
|
|
|
|
# Contribuitor: David C. Rankin <drankinatty at gmail dot com>
|
|
|
|
|
|
|
|
pkgname=tde-libcaldav
|
|
|
|
pkgver=14.0.10
|
|
|
|
pkgrel=1
|
|
|
|
pkgdesc="A client library adding support for the CalDAV protocol (rfc4791)"
|
|
|
|
arch=('i686' 'x86_64')
|
|
|
|
url="https://scm.trinitydesktop.org/scm/git/libcaldav"
|
|
|
|
license=('GPL')
|
|
|
|
groups=('tde-libs')
|
|
|
|
depends=('curl' 'glib2')
|
|
|
|
makedepends=('doxygen' 'pkgconfig' 'cmake')
|
|
|
|
optdepends=()
|
|
|
|
provides=('libcaldav')
|
|
|
|
# conflicts=()
|
|
|
|
replaces=('trinity-libcaldav')
|
|
|
|
options=('staticlibs' 'libtool' '!strip')
|
|
|
|
install=
|
|
|
|
source=("https://mirror.ppa.trinitydesktop.org/trinity/releases/R${pkgver}/main/dependencies/libcaldav-trinity-${pkgver}.tar.xz")
|
|
|
|
md5sums=('3d1b4997e4789c5b3a5389f5b58fd4f0')
|
|
|
|
|
|
|
|
_prefix=/usr
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd $srcdir
|
|
|
|
msg "Creating out-of-source build directory: ${srcdir}/build"
|
|
|
|
mkdir -p build
|
|
|
|
cd build
|
|
|
|
|
|
|
|
msg "Starting cmake..."
|
|
|
|
cmake ${srcdir}/${pkgname#*-}-trinity-${pkgver}/ \
|
|
|
|
-DCMAKE_INSTALL_PREFIX=${_prefix} \
|
|
|
|
-DWITH_GCC_VISIBILITY=ON
|
|
|
|
|
|
|
|
msg "Building $pkgname..."
|
|
|
|
make $NUMJOBS
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
msg "Packaging - $pkgname-$pkgver"
|
|
|
|
cd ${srcdir}/build
|
|
|
|
make -j1 DESTDIR="$pkgdir" install
|
|
|
|
}
|