# HG changeset patch # User Hans-G?nter Theisgen # Date 1555771431 -3600 # Node ID b773d0f56539a5913844d53817b86e9fcf56585e # Parent 7d9952286cb0e90aa8b3ada7dae727ada79a5e62 updated libxklavier and libxklavier-dev (5.0 -> 5.4) diff -r 7d9952286cb0 -r b773d0f56539 libxklavier-dev/receipt --- a/libxklavier-dev/receipt Sat Apr 20 15:23:09 2019 +0100 +++ b/libxklavier-dev/receipt Sat Apr 20 15:43:51 2019 +0100 @@ -1,21 +1,22 @@ # SliTaz package receipt. PACKAGE="libxklavier-dev" -VERSION="5.0" +VERSION="5.4" CATEGORY="development" -SHORT_DESC="Development files for libxklavier" +SHORT_DESC="Development files for libxklavier." MAINTAINER="al.bobylev@gmail.com" LICENSE="GPL2" -WEB_SITE="http://freedesktop.org/wiki/Software/LibXklavier" +WEB_SITE="https://freedesktop.org/wiki/Software/LibXklavier/" +DEPENDS="glib-dev libxklavier libxml2-dev pkg-config" WANTED="libxklavier" -DEPENDS="libxklavier glib-dev libxml2-dev 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/pkgconfig $fs/usr/lib - cp -a $install/usr/lib/*.la $fs/usr/lib + + cp -a $install/usr/include $fs/usr + cp -a $install/usr/lib/pkgconfig $fs/usr/lib + cp -a $install/usr/lib/*.la $fs/usr/lib } diff -r 7d9952286cb0 -r b773d0f56539 libxklavier/receipt --- a/libxklavier/receipt Sat Apr 20 15:23:09 2019 +0100 +++ b/libxklavier/receipt Sat Apr 20 15:43:51 2019 +0100 @@ -1,28 +1,30 @@ # SliTaz package receipt. PACKAGE="libxklavier" -VERSION="5.0" +VERSION="5.4" CATEGORY="system-tools" -SHORT_DESC="Library providing high-level API for XKB" +SHORT_DESC="Library providing high-level API for XKB." MAINTAINER="al.bobylev@gmail.com" LICENSE="GPL2" -WEB_SITE="http://freedesktop.org/wiki/Software/LibXklavier" -TARBALL="$PACKAGE-$VERSION.tar.bz2" -WGET_URL="$SF_MIRROR/gswitchit/libxklavier/$VERSION/$TARBALL" +WEB_SITE="https://freedesktop.org/wiki/Software/LibXklavier/" + +TARBALL="$PACKAGE-$VERSION.tar.xz" +WGET_URL="https://cgit.freedesktop.org/$PACKAGE/snapshot/$TARBALL" DEPENDS="glib xorg-libXi xorg-libxkbfile" -BUILD_DEPENDS="libxml2-dev glib-dev xorg-xkbcomp iso-codes" +BUILD_DEPENDS="automake glib-dev iso-codes libxml2-dev xorg-xkbcomp" # Rules to configure and make the package. compile_rules() { - ./configure \ - --disable-static \ - --disable-gtk-doc \ - --enable-xkb-support \ - --enable-xmodmap-support \ + ./autogen.sh && + ./configure \ + --disable-static \ + --disable-gtk-doc \ + --enable-xkb-support \ + --enable-xmodmap-support\ $CONFIGURE_ARGS && - make && + make -j 1 && make install }