wok rev 24851
updated libxdg-basedir and libxdg-basedir-dev (1.2.0 -> 1.2.3)
author | Hans-G?nter Theisgen |
---|---|
date | Sat Mar 26 10:49:19 2022 +0100 (2022-03-26) |
parents | 00dfb3b8e79d |
children | 5626c14aff89 |
files | libxdg-basedir-dev/receipt libxdg-basedir/description.txt libxdg-basedir/receipt |
line diff
1.1 --- a/libxdg-basedir-dev/receipt Sat Mar 26 10:37:30 2022 +0100 1.2 +++ b/libxdg-basedir-dev/receipt Sat Mar 26 10:49:19 2022 +0100 1.3 @@ -1,22 +1,18 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="libxdg-basedir-dev" 1.7 -VERSION="1.2.0" 1.8 +VERSION="1.2.3" 1.9 CATEGORY="development" 1.10 -SHORT_DESC="libxdg-basedir development files" 1.11 +SHORT_DESC="Libxdg-basedir development files." 1.12 MAINTAINER="mallory@sweetpeople.org" 1.13 LICENSE="MIT" 1.14 WEB_SITE="https://github.com/devnev/libxdg-basedir" 1.15 1.16 +DEPENDS="libxdg-basedir pkg-config" 1.17 WANTED="libxdg-basedir" 1.18 -DEPENDS="libxdg-basedir pkg-config" 1.19 1.20 # Rules to gen a SliTaz package suitable for Tazpkg. 1.21 genpkg_rules() 1.22 { 1.23 - mkdir -p $fs/usr/lib 1.24 - cp -a $install/usr/include $fs/usr 1.25 - cp -a $install/usr/lib/*.*a $fs/usr/lib 1.26 - cp -a $install/usr/lib/pkgconfig $fs/usr/lib 1.27 + get_dev_files 1.28 } 1.29 -
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/libxdg-basedir/description.txt Sat Mar 26 10:49:19 2022 +0100 2.3 @@ -0,0 +1,4 @@ 2.4 +Libxdg-basedir is an implementation of the XDG Base Directory specifications. 2.5 +These specifications set a standard for where applications should find and 2.6 +store preferences, cache files, and other run-time files and data, mostly 2.7 +based on the values of certain environment variables.
3.1 --- a/libxdg-basedir/receipt Sat Mar 26 10:37:30 2022 +0100 3.2 +++ b/libxdg-basedir/receipt Sat Mar 26 10:49:19 2022 +0100 3.3 @@ -1,18 +1,20 @@ 3.4 # SliTaz package receipt. 3.5 3.6 PACKAGE="libxdg-basedir" 3.7 -VERSION="1.2.0" 3.8 +VERSION="1.2.3" 3.9 CATEGORY="development" 3.10 SHORT_DESC="Implements functions for the XDG Base Directory specification." 3.11 MAINTAINER="mallory@sweetpeople.org" 3.12 LICENSE="MIT" 3.13 +WEB_SITE="https://github.com/devnev/libxdg-basedir" 3.14 + 3.15 TARBALL="$PACKAGE-$VERSION.tar.gz" 3.16 -WEB_SITE="https://github.com/devnev/libxdg-basedir" 3.17 WGET_URL="https://github.com/devnev/$PACKAGE/archive/$TARBALL" 3.18 + 3.19 +BUILD_DEPENDS="autoconf automake libtool" 3.20 + 3.21 #HOST_ARCH="i486 arm" 3.22 3.23 -BUILD_DEPENDS="wget autoconf automake libtool" 3.24 - 3.25 current_version() 3.26 { 3.27 wget -O - ${WGET_URL%/arch*}/tags 2>/dev/null | \ 3.28 @@ -23,16 +25,16 @@ 3.29 compile_rules() 3.30 { 3.31 unset CFLAGS 3.32 - ./autogen.sh \ 3.33 - --prefix=/usr \ 3.34 + ./autogen.sh && 3.35 + ./configure \ 3.36 + --prefix=/usr \ 3.37 $CONFIGURE_ARGS && 3.38 - make && make install 3.39 + make && 3.40 + make install 3.41 } 3.42 3.43 # Rules to gen a SliTaz package suitable for Tazpkg. 3.44 genpkg_rules() 3.45 { 3.46 - mkdir -p $fs/usr/lib 3.47 - cp -a $install/usr/lib/*.so* $fs/usr/lib 3.48 + cook_copy_files *.so* 3.49 } 3.50 -