wok diff libxdg-basedir/receipt @ rev 25805
created recipe for xfce4-weather-plugin
author | Hans-G?nter Theisgen |
---|---|
date | Wed Nov 13 15:24:31 2024 +0100 (2 weeks ago) |
parents | ac8ca9758df1 |
children |
line diff
1.1 --- a/libxdg-basedir/receipt Sat Jan 15 15:21:40 2022 +0000 1.2 +++ b/libxdg-basedir/receipt Wed Nov 13 15:24:31 2024 +0100 1.3 @@ -1,18 +1,20 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="libxdg-basedir" 1.7 -VERSION="1.2.0" 1.8 +VERSION="1.2.3" 1.9 CATEGORY="development" 1.10 SHORT_DESC="Implements functions for the XDG Base Directory specification." 1.11 MAINTAINER="mallory@sweetpeople.org" 1.12 LICENSE="MIT" 1.13 +WEB_SITE="https://github.com/devnev/libxdg-basedir" 1.14 + 1.15 TARBALL="$PACKAGE-$VERSION.tar.gz" 1.16 -WEB_SITE="https://github.com/devnev/libxdg-basedir" 1.17 WGET_URL="https://github.com/devnev/$PACKAGE/archive/$TARBALL" 1.18 + 1.19 +BUILD_DEPENDS="autoconf automake libtool" 1.20 + 1.21 #HOST_ARCH="i486 arm" 1.22 1.23 -BUILD_DEPENDS="wget autoconf automake libtool" 1.24 - 1.25 current_version() 1.26 { 1.27 wget -O - ${WGET_URL%/arch*}/tags 2>/dev/null | \ 1.28 @@ -23,16 +25,16 @@ 1.29 compile_rules() 1.30 { 1.31 unset CFLAGS 1.32 - ./autogen.sh \ 1.33 - --prefix=/usr \ 1.34 + ./autogen.sh && 1.35 + ./configure \ 1.36 + --prefix=/usr \ 1.37 $CONFIGURE_ARGS && 1.38 - make && make install 1.39 + make && 1.40 + make install 1.41 } 1.42 1.43 # Rules to gen a SliTaz package suitable for Tazpkg. 1.44 genpkg_rules() 1.45 { 1.46 - mkdir -p $fs/usr/lib 1.47 - cp -a $install/usr/lib/*.so* $fs/usr/lib 1.48 + cook_copy_files *.so* 1.49 } 1.50 -