wok rev 25792
created recipe for libxfce4util-lang
author | Hans-G?nter Theisgen |
---|---|
date | Wed Oct 23 15:07:45 2024 +0100 (4 weeks ago) |
parents | 54b8c7c6fe47 |
children | f5a28b7501e1 |
files | libxfce4util-dev/receipt libxfce4util-lang/receipt libxfce4util/descrition.txt libxfce4util/receipt |
line diff
1.1 --- a/libxfce4util-dev/receipt Wed Oct 23 13:27:53 2024 +0000 1.2 +++ b/libxfce4util-dev/receipt Wed Oct 23 15:07:45 2024 +0100 1.3 @@ -3,22 +3,17 @@ 1.4 PACKAGE="libxfce4util-dev" 1.5 VERSION="4.12.1" 1.6 CATEGORY="development" 1.7 -SHORT_DESC="Xfce Utility library dev files" 1.8 +SHORT_DESC="Xfce Utility library - development files." 1.9 MAINTAINER="erjo@slitaz.org" 1.10 LICENSE="LGPL2" 1.11 -WANTED="libxfce4util" 1.12 WEB_SITE="https://www.xfce.org" 1.13 1.14 -DEPENDS="gtk+ libxfce4util glib-dev pkg-config" 1.15 +DEPENDS="glib-dev gtk+ libxfce4util pkg-config" 1.16 +WANTED="libxfce4util" 1.17 1.18 # Rules to gen a SliTaz package suitable for Tazpkg. 1.19 genpkg_rules() 1.20 { 1.21 - mkdir -p $fs/usr \ 1.22 - $fs/usr/lib 1.23 - 1.24 - cp -a $install/usr/include $fs/usr 1.25 - cp -a $install/usr/lib/pkgconfig $fs/usr/lib 1.26 - cp -a $install/usr/lib/*.*a $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/libxfce4util-lang/receipt Wed Oct 23 15:07:45 2024 +0100 2.3 @@ -0,0 +1,17 @@ 2.4 +# SliTaz package receipt. 2.5 + 2.6 +PACKAGE="libxfce4util-lang" 2.7 +VERSION="4.12.1" 2.8 +CATEGORY="localization" 2.9 +SHORT_DESC="Xfce Utility library - localised messages." 2.10 +MAINTAINER="maintainer@slitaz.org" 2.11 +LICENSE="LGPL2" 2.12 +WEB_SITE="https://www.xfce.org" 2.13 + 2.14 +WANTED="libxfce4util" 2.15 + 2.16 +# Rules to gen a SliTaz package suitable for Tazpkg. 2.17 +genpkg_rules() 2.18 +{ 2.19 + cook_copy_folders locale 2.20 +}
3.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 3.2 +++ b/libxfce4util/descrition.txt Wed Oct 23 15:07:45 2024 +0100 3.3 @@ -0,0 +1,2 @@ 3.4 +Libxfce4util is used to share commonly used non-GTK+ utilities 3.5 +among the Xfce applications.
4.1 --- a/libxfce4util/receipt Wed Oct 23 13:27:53 2024 +0000 4.2 +++ b/libxfce4util/receipt Wed Oct 23 15:07:45 2024 +0100 4.3 @@ -10,6 +10,7 @@ 4.4 WEB_SITE="https://www.xfce.org" 4.5 WGET_URL="https://archive.xfce.org/src/xfce/$PACKAGE/${VERSION%.*}/$TARBALL" 4.6 4.7 +SUGGESTED="libxfce4util-lang" 4.8 DEPENDS="gtk+" 4.9 BUILD_DEPENDS="gtk+-dev intltool pkg-config" 4.10 4.11 @@ -24,23 +25,20 @@ 4.12 # Rules to configure and make the package. 4.13 compile_rules() 4.14 { 4.15 - cd $src 4.16 - ./configure --prefix=/usr \ 4.17 - --infodir=/usr/share/info \ 4.18 - --disable-debug \ 4.19 - --mandir=/usr/share/man $CONFIGURE_ARGS && \ 4.20 - make && make DESTDIR=$DESTDIR install 4.21 + ./configure \ 4.22 + --prefix=/usr \ 4.23 + --infodir=/usr/share/info \ 4.24 + --disable-debug \ 4.25 + --mandir=/usr/share/man \ 4.26 + $CONFIGURE_ARGS && 4.27 + make && 4.28 + make install DESTDIR=$DESTDIR 4.29 } 4.30 4.31 # Rules to gen a SliTaz package suitable for Tazpkg. 4.32 genpkg_rules() 4.33 { 4.34 - mkdir -p $fs/usr \ 4.35 - $fs/usr/lib \ 4.36 - $fs/usr/share/locale 4.37 - 4.38 - cp -a $install/usr/sbin $fs/usr 4.39 - cp -a $install/usr/lib/*.so* $fs/usr/lib 4.40 - cp -a $install/usr/share/locale/fr $fs/usr/share/locale 4.41 + cook_copy_folders sbin 4.42 + cook_copy_files *.so* 4.43 } 4.44