# HG changeset patch # User Hans-G?nter Theisgen # Date 1729692465 -3600 # Node ID 0b386d230ab59bb70496b1e240fbb926721fb8de # Parent 54b8c7c6fe47afee51fa9ffc001f61a9228694bf created recipe for libxfce4util-lang diff -r 54b8c7c6fe47 -r 0b386d230ab5 libxfce4util-dev/receipt --- a/libxfce4util-dev/receipt Wed Oct 23 13:27:53 2024 +0000 +++ b/libxfce4util-dev/receipt Wed Oct 23 15:07:45 2024 +0100 @@ -3,22 +3,17 @@ PACKAGE="libxfce4util-dev" VERSION="4.12.1" CATEGORY="development" -SHORT_DESC="Xfce Utility library dev files" +SHORT_DESC="Xfce Utility library - development files." MAINTAINER="erjo@slitaz.org" LICENSE="LGPL2" -WANTED="libxfce4util" WEB_SITE="https://www.xfce.org" -DEPENDS="gtk+ libxfce4util glib-dev pkg-config" +DEPENDS="glib-dev gtk+ libxfce4util pkg-config" +WANTED="libxfce4util" # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr \ - $fs/usr/lib - - cp -a $install/usr/include $fs/usr - cp -a $install/usr/lib/pkgconfig $fs/usr/lib - cp -a $install/usr/lib/*.*a $fs/usr/lib + get_dev_files } diff -r 54b8c7c6fe47 -r 0b386d230ab5 libxfce4util-lang/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libxfce4util-lang/receipt Wed Oct 23 15:07:45 2024 +0100 @@ -0,0 +1,17 @@ +# SliTaz package receipt. + +PACKAGE="libxfce4util-lang" +VERSION="4.12.1" +CATEGORY="localization" +SHORT_DESC="Xfce Utility library - localised messages." +MAINTAINER="maintainer@slitaz.org" +LICENSE="LGPL2" +WEB_SITE="https://www.xfce.org" + +WANTED="libxfce4util" + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + cook_copy_folders locale +} diff -r 54b8c7c6fe47 -r 0b386d230ab5 libxfce4util/descrition.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libxfce4util/descrition.txt Wed Oct 23 15:07:45 2024 +0100 @@ -0,0 +1,2 @@ +Libxfce4util is used to share commonly used non-GTK+ utilities +among the Xfce applications. diff -r 54b8c7c6fe47 -r 0b386d230ab5 libxfce4util/receipt --- a/libxfce4util/receipt Wed Oct 23 13:27:53 2024 +0000 +++ b/libxfce4util/receipt Wed Oct 23 15:07:45 2024 +0100 @@ -10,6 +10,7 @@ WEB_SITE="https://www.xfce.org" WGET_URL="https://archive.xfce.org/src/xfce/$PACKAGE/${VERSION%.*}/$TARBALL" +SUGGESTED="libxfce4util-lang" DEPENDS="gtk+" BUILD_DEPENDS="gtk+-dev intltool pkg-config" @@ -24,23 +25,20 @@ # Rules to configure and make the package. compile_rules() { - cd $src - ./configure --prefix=/usr \ - --infodir=/usr/share/info \ - --disable-debug \ - --mandir=/usr/share/man $CONFIGURE_ARGS && \ - make && make DESTDIR=$DESTDIR install + ./configure \ + --prefix=/usr \ + --infodir=/usr/share/info \ + --disable-debug \ + --mandir=/usr/share/man \ + $CONFIGURE_ARGS && + make && + make install DESTDIR=$DESTDIR } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr \ - $fs/usr/lib \ - $fs/usr/share/locale - - cp -a $install/usr/sbin $fs/usr - cp -a $install/usr/lib/*.so* $fs/usr/lib - cp -a $install/usr/share/locale/fr $fs/usr/share/locale + cook_copy_folders sbin + cook_copy_files *.so* }