# HG changeset patch # User Hans-G?nter Theisgen # Date 1554987861 -3600 # Node ID b18d8ad76ff8fc132c076a350d6453668d01ff9a # Parent 29f98d2a8eea90db521463e7ab59908c81b97ead updated libical and libical-dev (0.44 -> 3.0.4) diff -r 29f98d2a8eea -r b18d8ad76ff8 libical-dev/receipt --- a/libical-dev/receipt Thu Apr 11 14:51:36 2019 +0200 +++ b/libical-dev/receipt Thu Apr 11 14:04:21 2019 +0100 @@ -1,22 +1,24 @@ # SliTaz package receipt. PACKAGE="libical-dev" -VERSION="0.44" +VERSION="3.0.4" CATEGORY="development" -SHORT_DESC="Opensource ICalendar dev files" +SHORT_DESC="Opensource ICalendar - development files." MAINTAINER="erjo@slitaz.org" LICENSE="MPL LGPL" -WEB_SITE="http://www.citadel.org/doku.php/documentation:featured_projects:libical?do=export_xhtml" +WEB_SITE="https://github.com/libical/libical/" + WANTED="libical" - DEPENDS="libical pkg-config" # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr/lib - cp -a $install/usr/include $fs/usr - cp -a $install/usr/lib/*.*a $fs/usr/lib - cp -a $install/usr/lib/pkgconfig $fs/usr/lib + + cp -a $install/usr/include $fs/usr + cp -a $install/usr/lib/*.*a $fs/usr/lib + cp -a $install/usr/lib/pkgconfig $fs/usr/lib + sed -i 's|/include$|/include/libical|' $fs/usr/lib/pkgconfig/libical.pc } diff -r 29f98d2a8eea -r b18d8ad76ff8 libical/receipt --- a/libical/receipt Thu Apr 11 14:51:36 2019 +0200 +++ b/libical/receipt Thu Apr 11 14:04:21 2019 +0100 @@ -1,27 +1,33 @@ # SliTaz package receipt. PACKAGE="libical" -VERSION="0.44" +VERSION="3.0.4" CATEGORY="system-tools" -SHORT_DESC="Opensource ICalendar implementation" +SHORT_DESC="Opensource ICalendar implementation." MAINTAINER="erjo@slitaz.org" LICENSE="MPL LGPL" +WEB_SITE="https://github.com/libical/libical/" + TARBALL="$PACKAGE-$VERSION.tar.gz" -WEB_SITE="https://sourceforge.net/projects/freeassociation/" -WGET_URL="http://downloads.sourceforge.net/project/freeassociation/$PACKAGE/$PACKAGE-$VERSION/$TARBALL" +WGET_URL="https://github.com/$PACKAGE/$PACKAGE/releases/download/v$VERSION/$TARBALL" DEPENDS="" +BUILD_DEPENDS="cmake" # Rules to configure and make the package. compile_rules() { - cd $src - ./configure \ - --prefix=/usr \ - --infodir=/usr/share/info \ - --mandir=/usr/share/man \ - $CONFIGURE_ARGS && - make && make DESTDIR=$DESTDIR install + mkdir build + cd build + cmake .. \ + -DCMAKE_INSTALL_PREFIX=/usr +# ./configure \ +# --prefix=/usr \ +# --infodir=/usr/share/info \ +# --mandir=/usr/share/man \ +# $CONFIGURE_ARGS && + make -j 1 && + make DESTDIR=$DESTDIR install } # Rules to gen a SliTaz package suitable for Tazpkg. @@ -30,4 +36,3 @@ mkdir -p $fs/usr/lib cp -a $install/usr/lib/*.so* $fs/usr/lib } -