wok rev 24799

updated libical and libical-dev (3.0.8 -> 3.0.14)
author Hans-G?nter Theisgen
date Mon Mar 21 17:34:22 2022 +0100 (2022-03-21)
parents a6336704378f
children 47332d4af699
files libical-dev/receipt libical/description.txt libical/receipt
line diff
     1.1 --- a/libical-dev/receipt	Mon Mar 21 17:23:16 2022 +0100
     1.2 +++ b/libical-dev/receipt	Mon Mar 21 17:34:22 2022 +0100
     1.3 @@ -1,7 +1,7 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="libical-dev"
     1.7 -VERSION="3.0.8"
     1.8 +VERSION="3.0.14"
     1.9  CATEGORY="development"
    1.10  SHORT_DESC="Opensource ICalendar - development files."
    1.11  MAINTAINER="erjo@slitaz.org"
    1.12 @@ -14,12 +14,7 @@
    1.13  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.14  genpkg_rules()
    1.15  {
    1.16 -	mkdir -p $fs/usr/lib
    1.17 -
    1.18 -	cp -a $install/usr/include		$fs/usr
    1.19 -	cp -a $install/usr/lib/*.*a		$fs/usr/lib
    1.20 -	cp -a $install/usr/lib/pkgconfig	$fs/usr/lib
    1.21 -
    1.22 +	get_dev_files
    1.23  	sed -i 's|/include$|/include/libical|' \
    1.24  		$fs/usr/lib/pkgconfig/libical.pc
    1.25  }
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/libical/description.txt	Mon Mar 21 17:34:22 2022 +0100
     2.3 @@ -0,0 +1,9 @@
     2.4 +Libical is an Open Source implementation of the iCalendar protocols
     2.5 +and protocol data units.
     2.6 +The iCalendar specification describes how calendar clients can
     2.7 +communicate with calendar servers so users can store their calendar
     2.8 +data and arrange meetings with other users.
     2.9 +
    2.10 +Libical implements RFC5545, RFC5546, RFC7529; the CalDav scheduling
    2.11 +extensions in RFC6638; iCalendar extensions in RFC7986; plus the
    2.12 +iCalendar iMIP protocol in RFC6047.
     3.1 --- a/libical/receipt	Mon Mar 21 17:23:16 2022 +0100
     3.2 +++ b/libical/receipt	Mon Mar 21 17:34:22 2022 +0100
     3.3 @@ -1,7 +1,7 @@
     3.4  # SliTaz package receipt.
     3.5  
     3.6  PACKAGE="libical"
     3.7 -VERSION="3.0.8"
     3.8 +VERSION="3.0.14"
     3.9  CATEGORY="system-tools"
    3.10  SHORT_DESC="Opensource ICalendar implementation."
    3.11  MAINTAINER="erjo@slitaz.org"
    3.12 @@ -11,8 +11,8 @@
    3.13  TARBALL="$PACKAGE-$VERSION.tar.gz"
    3.14  WGET_URL="https://github.com/$PACKAGE/$PACKAGE/releases/download/v$VERSION/$TARBALL"
    3.15  
    3.16 -DEPENDS=""
    3.17 -BUILD_DEPENDS="cmake"
    3.18 +DEPENDS="libxml2"
    3.19 +BUILD_DEPENDS="cmake libxml2-dev"
    3.20  
    3.21  current_version()
    3.22  {
    3.23 @@ -23,18 +23,17 @@
    3.24  # Rules to configure and make the package.
    3.25  compile_rules()
    3.26  {
    3.27 -	mkdir	build
    3.28 -	cd	build
    3.29 +	mkdir	_build &&
    3.30 +	cd	_build &&
    3.31  	cmake	..				\
    3.32 -		-DCMAKE_INSTALL_PREFIX=/usr	\
    3.33 -		-DENABLE_GTK_DOC=OFF &&
    3.34 -	make -j 1 &&
    3.35 -	make DESTDIR=$DESTDIR install
    3.36 +		-D ENABLE_GTK_DOC=OFF		\
    3.37 +		-D CMAKE_INSTALL_PREFIX=/usr &&
    3.38 +	make &&
    3.39 +	make install DESTDIR=$DESTDIR
    3.40  }
    3.41  
    3.42  # Rules to gen a SliTaz package suitable for Tazpkg.
    3.43  genpkg_rules()
    3.44  {
    3.45 -	mkdir -p $fs/usr/lib
    3.46 -	cp -a $install/usr/lib/*.so*	$fs/usr/lib
    3.47 +	cook_copy_files	*.so*
    3.48  }