# HG changeset patch # User Hans-G?nter Theisgen # Date 1656511398 -3600 # Node ID 8dad5987f564170bad14728c614694a887a13afa # Parent bc373060e0a61c639dda84d24f7b3c19a375bb66 updated popt and popt-dev (1.16 -> 1.18) diff -r bc373060e0a6 -r 8dad5987f564 popt-dev/receipt --- a/popt-dev/receipt Wed Jun 29 14:52:59 2022 +0100 +++ b/popt-dev/receipt Wed Jun 29 15:03:18 2022 +0100 @@ -1,22 +1,22 @@ # SliTaz package receipt. PACKAGE="popt-dev" -VERSION="1.16" +VERSION="1.18" CATEGORY="development" -SHORT_DESC="Library for parsing command line options devel files." +SHORT_DESC="Library for parsing command line options - development files." MAINTAINER="pankso@slitaz.org" LICENSE="MIT" -WANTED="popt" -WEB_SITE="https://directory.fsf.org/project/popt/" -HOST_ARCH="i486 arm" +WEB_SITE="https://github.com/rpm-software-management/popt" DEPENDS="pkg-config" +WANTED="popt" + +HOST_ARCH="i486 arm" # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib - cp -a $install/usr/lib/*.*a $fs/usr/lib - cp -a $install/usr/include $fs/usr - cp -a $install/usr/lib/pkgconfig $fs/usr/lib + cook_copy_folders include + cook_copy_folders pkgconfig + cook_copy_files *.*a } diff -r bc373060e0a6 -r 8dad5987f564 popt-lang/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/popt-lang/receipt Wed Jun 29 15:03:18 2022 +0100 @@ -0,0 +1,16 @@ +# SliTaz package receipt. + +PACKAGE="popt-lang" +VERSION="1.18" +CATEGORY="localization" +SHORT_DESC="Library for parsing command line options - localised messages." +MAINTAINER="maintainer@slitaz.org" +LICENSE="MIT" +WEB_SITE="https://github.com/rpm-software-management/popt" + +WANTED="popt" + +genpkg_rules() +{ + cook_copy_folders locale +} diff -r bc373060e0a6 -r 8dad5987f564 popt/receipt --- a/popt/receipt Wed Jun 29 14:52:59 2022 +0100 +++ b/popt/receipt Wed Jun 29 15:03:18 2022 +0100 @@ -1,14 +1,19 @@ # SliTaz package receipt. PACKAGE="popt" -VERSION="1.16" +VERSION="1.18" CATEGORY="system-tools" SHORT_DESC="Library for parsing command line options." MAINTAINER="pankso@slitaz.org" LICENSE="MIT" +WEB_SITE="https://github.com/rpm-software-management/popt" + TARBALL="$PACKAGE-$VERSION.tar.gz" -WEB_SITE="https://directory.fsf.org/project/popt/" -WGET_URL="http://rpm5.org/files/popt/$TARBALL" +WGET_URL="https://github.com/rpm-software-management/$PACKAGE/archive/refs/tags/$PACKAGE-$VERSION-release.tar.gz" + +SUGGESTED="popt-lang" +BUILD_DEPENDS="automake libtool" + HOST_ARCH="i486 arm" current_version() @@ -20,13 +25,14 @@ # Rules to configure and make the package. compile_rules() { + ./autogen.sh && ./configure $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* }