# HG changeset patch # User Hans-G?nter Theisgen # Date 1582879554 -3600 # Node ID e476e0df1ff76347419070d0f9610e529801a53d # Parent 5faac9811812b85bd5117da240f6d287d303d14a updated iksemel and iksemel-dev (1.2 -> 1.4.2) diff -r 5faac9811812 -r e476e0df1ff7 iksemel-dev/receipt --- a/iksemel-dev/receipt Thu Feb 27 17:41:59 2020 +0100 +++ b/iksemel-dev/receipt Fri Feb 28 09:45:54 2020 +0100 @@ -1,18 +1,21 @@ # SliTaz package receipt. PACKAGE="iksemel-dev" -VERSION="1.2" +VERSION="1.4.2" CATEGORY="development" -SHORT_DESC="XML parser library for Jabber applications." +SHORT_DESC="XML parser library for Jabber applications - development files." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="LGPL2.1" -WEB_SITE="https://github.com/meduketto/iksemel" +WEB_SITE="https://github.com/timothytylee/iksemel-1.4" + WANTED="iksemel" # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib $fs/usr/share - cp -a $install/usr/include $fs/usr - cp -a $install/usr/lib/*a $fs/usr/lib + mkdir -p $fs/usr/lib + mkdir -p $fs/usr/share + + cp -a $install/usr/include $fs/usr + cp -a $install/usr/lib/*a $fs/usr/lib } diff -r 5faac9811812 -r e476e0df1ff7 iksemel/receipt --- a/iksemel/receipt Thu Feb 27 17:41:59 2020 +0100 +++ b/iksemel/receipt Fri Feb 28 09:45:54 2020 +0100 @@ -1,23 +1,28 @@ # SliTaz package receipt. PACKAGE="iksemel" -VERSION="1.2" +VERSION="1.4.2" CATEGORY="network" SHORT_DESC="XML parser library for Jabber applications." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="LGPL2.1" -WEB_SITE="https://github.com/meduketto/iksemel" +WEB_SITE="https://github.com/timothytylee/iksemel-1.4" + TARBALL="$PACKAGE-$VERSION.tar.gz" -WGET_URL="http://jabberstudio.rediris.es/$PACKAGE/$TARBALL" +WGET_URL="https://github.com/timothytylee/$PACKAGE-${VERSION%.*}/archive/v$VERSION.tar.gz" -DEPENDS="gnutls libgcrypt libgpg-error zlib pkg-config" +DEPENDS="gnutls libgcrypt libgpg-error pkg-config zlib" +BUILD_DEPENDS="autoconf automake libtool" # Rules to configure and make the package. compile_rules() { - cd $src - ./configure --prefix=/usr --infodir=/usr/share/info \ - --mandir=/usr/share/man $CONFIGURE_ARGS && + ./autogen.sh && + ./configure \ + --prefix=/usr \ + --infodir=/usr/share/info \ + --mandir=/usr/share/man \ + $CONFIGURE_ARGS && make && make DESTDIR=$DESTDIR install } @@ -26,8 +31,8 @@ genpkg_rules() { mkdir -p $fs/usr/lib - cp -a $install/usr/bin $fs/usr - cp -a $install/usr/lib/*.so* $fs/usr/lib - cp -a $install/usr/lib/pkgconfig $fs/usr/lib + + cp -a $install/usr/bin $fs/usr + cp -a $install/usr/lib/*.so* $fs/usr/lib + cp -a $install/usr/lib/pkgconfig $fs/usr/lib } -