You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
902 B
38 lines
902 B
# Maintainer: Michael Manley <mmanley@nasutek.com>
|
|
# Contribuitor: David C. Rankin <drankinatty at gmail dot com>
|
|
|
|
pkgname=tde-libcaldav
|
|
pkgver=14.0.5
|
|
pkgrel=1
|
|
pkgdesc="A client library adding support for the CalDAV protocol (rfc4791)"
|
|
arch=('i686' 'x86_64')
|
|
url="http://scm.trinitydesktop.org/scm/git/libcaldav"
|
|
license=('GPL')
|
|
groups=('tde-libs')
|
|
depends=('curl' 'glib2')
|
|
makedepends=(doxygen)
|
|
optdepends=()
|
|
provides=('libcaldav')
|
|
# conflicts=()
|
|
replaces=('trinity-libcaldav')
|
|
options=('staticlibs' 'libtool' '!strip')
|
|
install=
|
|
source=("http://mirror.ppa.trinitydesktop.org/trinity/releases/R${pkgver}/dependencies/libcaldav-R${pkgver}.tar.bz2")
|
|
md5sums=('e834fe3095d2c58f68fceebb5235aac2')
|
|
|
|
build() {
|
|
|
|
cd $srcdir
|
|
|
|
cd $srcdir/dependencies/${pkgname#*-}
|
|
./autogen.sh --prefix=/usr
|
|
make $NUMJOBS
|
|
}
|
|
|
|
package() {
|
|
|
|
cd ${srcdir}/dependencies/${pkgname#*-}
|
|
make -j1 DESTDIR=${pkgdir} install
|
|
}
|
|
|