# HG changeset patch # User Hans-G?nter Theisgen # Date 1648288159 -3600 # Node ID 3931c7c2660c3cdbca45088650598b3050dea1ca # Parent 00dfb3b8e79db3c61d133e8324ac0afaac77b15a updated libxdg-basedir and libxdg-basedir-dev (1.2.0 -> 1.2.3) diff -r 00dfb3b8e79d -r 3931c7c2660c libxdg-basedir-dev/receipt --- a/libxdg-basedir-dev/receipt Sat Mar 26 10:37:30 2022 +0100 +++ b/libxdg-basedir-dev/receipt Sat Mar 26 10:49:19 2022 +0100 @@ -1,22 +1,18 @@ # SliTaz package receipt. PACKAGE="libxdg-basedir-dev" -VERSION="1.2.0" +VERSION="1.2.3" CATEGORY="development" -SHORT_DESC="libxdg-basedir development files" +SHORT_DESC="Libxdg-basedir development files." MAINTAINER="mallory@sweetpeople.org" LICENSE="MIT" WEB_SITE="https://github.com/devnev/libxdg-basedir" +DEPENDS="libxdg-basedir pkg-config" WANTED="libxdg-basedir" -DEPENDS="libxdg-basedir 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 + get_dev_files } - diff -r 00dfb3b8e79d -r 3931c7c2660c libxdg-basedir/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libxdg-basedir/description.txt Sat Mar 26 10:49:19 2022 +0100 @@ -0,0 +1,4 @@ +Libxdg-basedir is an implementation of the XDG Base Directory specifications. +These specifications set a standard for where applications should find and +store preferences, cache files, and other run-time files and data, mostly +based on the values of certain environment variables. diff -r 00dfb3b8e79d -r 3931c7c2660c libxdg-basedir/receipt --- a/libxdg-basedir/receipt Sat Mar 26 10:37:30 2022 +0100 +++ b/libxdg-basedir/receipt Sat Mar 26 10:49:19 2022 +0100 @@ -1,18 +1,20 @@ # SliTaz package receipt. PACKAGE="libxdg-basedir" -VERSION="1.2.0" +VERSION="1.2.3" CATEGORY="development" SHORT_DESC="Implements functions for the XDG Base Directory specification." MAINTAINER="mallory@sweetpeople.org" LICENSE="MIT" +WEB_SITE="https://github.com/devnev/libxdg-basedir" + TARBALL="$PACKAGE-$VERSION.tar.gz" -WEB_SITE="https://github.com/devnev/libxdg-basedir" WGET_URL="https://github.com/devnev/$PACKAGE/archive/$TARBALL" + +BUILD_DEPENDS="autoconf automake libtool" + #HOST_ARCH="i486 arm" -BUILD_DEPENDS="wget autoconf automake libtool" - current_version() { wget -O - ${WGET_URL%/arch*}/tags 2>/dev/null | \ @@ -23,16 +25,16 @@ compile_rules() { unset CFLAGS - ./autogen.sh \ - --prefix=/usr \ + ./autogen.sh && + ./configure \ + --prefix=/usr \ $CONFIGURE_ARGS && - make && make install + make && + make install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib - cp -a $install/usr/lib/*.so* $fs/usr/lib + cook_copy_files *.so* } -