wok-current rev 21237
updated libical and libical-dev (0.44 -> 3.0.4)
author | Hans-G?nter Theisgen |
---|---|
date | Thu Apr 11 14:04:21 2019 +0100 (2019-04-11) |
parents | 29f98d2a8eea |
children | d957986171e8 |
files | libical-dev/receipt libical/receipt |
line diff
1.1 --- a/libical-dev/receipt Thu Apr 11 14:51:36 2019 +0200 1.2 +++ b/libical-dev/receipt Thu Apr 11 14:04:21 2019 +0100 1.3 @@ -1,22 +1,24 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="libical-dev" 1.7 -VERSION="0.44" 1.8 +VERSION="3.0.4" 1.9 CATEGORY="development" 1.10 -SHORT_DESC="Opensource ICalendar dev files" 1.11 +SHORT_DESC="Opensource ICalendar - development files." 1.12 MAINTAINER="erjo@slitaz.org" 1.13 LICENSE="MPL LGPL" 1.14 -WEB_SITE="http://www.citadel.org/doku.php/documentation:featured_projects:libical?do=export_xhtml" 1.15 +WEB_SITE="https://github.com/libical/libical/" 1.16 + 1.17 WANTED="libical" 1.18 - 1.19 DEPENDS="libical pkg-config" 1.20 1.21 # Rules to gen a SliTaz package suitable for Tazpkg. 1.22 genpkg_rules() 1.23 { 1.24 mkdir -p $fs/usr/lib 1.25 - cp -a $install/usr/include $fs/usr 1.26 - cp -a $install/usr/lib/*.*a $fs/usr/lib 1.27 - cp -a $install/usr/lib/pkgconfig $fs/usr/lib 1.28 + 1.29 + cp -a $install/usr/include $fs/usr 1.30 + cp -a $install/usr/lib/*.*a $fs/usr/lib 1.31 + cp -a $install/usr/lib/pkgconfig $fs/usr/lib 1.32 + 1.33 sed -i 's|/include$|/include/libical|' $fs/usr/lib/pkgconfig/libical.pc 1.34 }
2.1 --- a/libical/receipt Thu Apr 11 14:51:36 2019 +0200 2.2 +++ b/libical/receipt Thu Apr 11 14:04:21 2019 +0100 2.3 @@ -1,27 +1,33 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="libical" 2.7 -VERSION="0.44" 2.8 +VERSION="3.0.4" 2.9 CATEGORY="system-tools" 2.10 -SHORT_DESC="Opensource ICalendar implementation" 2.11 +SHORT_DESC="Opensource ICalendar implementation." 2.12 MAINTAINER="erjo@slitaz.org" 2.13 LICENSE="MPL LGPL" 2.14 +WEB_SITE="https://github.com/libical/libical/" 2.15 + 2.16 TARBALL="$PACKAGE-$VERSION.tar.gz" 2.17 -WEB_SITE="https://sourceforge.net/projects/freeassociation/" 2.18 -WGET_URL="http://downloads.sourceforge.net/project/freeassociation/$PACKAGE/$PACKAGE-$VERSION/$TARBALL" 2.19 +WGET_URL="https://github.com/$PACKAGE/$PACKAGE/releases/download/v$VERSION/$TARBALL" 2.20 2.21 DEPENDS="" 2.22 +BUILD_DEPENDS="cmake" 2.23 2.24 # Rules to configure and make the package. 2.25 compile_rules() 2.26 { 2.27 - cd $src 2.28 - ./configure \ 2.29 - --prefix=/usr \ 2.30 - --infodir=/usr/share/info \ 2.31 - --mandir=/usr/share/man \ 2.32 - $CONFIGURE_ARGS && 2.33 - make && make DESTDIR=$DESTDIR install 2.34 + mkdir build 2.35 + cd build 2.36 + cmake .. \ 2.37 + -DCMAKE_INSTALL_PREFIX=/usr 2.38 +# ./configure \ 2.39 +# --prefix=/usr \ 2.40 +# --infodir=/usr/share/info \ 2.41 +# --mandir=/usr/share/man \ 2.42 +# $CONFIGURE_ARGS && 2.43 + make -j 1 && 2.44 + make DESTDIR=$DESTDIR install 2.45 } 2.46 2.47 # Rules to gen a SliTaz package suitable for Tazpkg. 2.48 @@ -30,4 +36,3 @@ 2.49 mkdir -p $fs/usr/lib 2.50 cp -a $install/usr/lib/*.so* $fs/usr/lib 2.51 } 2.52 -