wok rev 25725
added recipe for xfce4-notifyd-lang
author | Hans-G?nter Theisgen |
---|---|
date | Sat Aug 17 17:12:02 2024 +0100 (3 months ago) |
parents | 7b4c7e8944cd |
children | b949efa3f8ac |
files | xfce4-netload-plugin/receipt xfce4-notifyd-lang/receipt xfce4-notifyd/receipt |
line diff
1.1 --- a/xfce4-netload-plugin/receipt Sat Aug 17 16:58:59 2024 +0100 1.2 +++ b/xfce4-netload-plugin/receipt Sat Aug 17 17:12:02 2024 +0100 1.3 @@ -14,7 +14,7 @@ 1.4 SUGGESTED="xfce4-netload-plugin-lang" 1.5 DEPENDS="gdk-pixbuf gtk+ libxfcegui4 libxfce4ui startup-notification 1.6 xcb-util xfce4-panel" 1.7 -BUILD_DEPENDS="gdk-pixbuf-dev gtk+-dev libxfcegui4-dev libxfce4ui-dev 1.8 +BUILD_DEPENDS="file gdk-pixbuf-dev gtk+-dev libxfcegui4-dev libxfce4ui-dev 1.9 pkg-config startup-notification-dev xcb-util-dev xfce4-panel-dev" 1.10 1.11 # Rules to configure and make the package.
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/xfce4-notifyd-lang/receipt Sat Aug 17 17:12:02 2024 +0100 2.3 @@ -0,0 +1,17 @@ 2.4 +# SliTaz package receipt. 2.5 + 2.6 +PACKAGE="xfce4-notifyd-lang" 2.7 +VERSION="0.2.2" 2.8 +CATEGORY="localization" 2.9 +SHORT_DESC="Simple, visually-appealing notification daemon for Xfce - localised messages." 2.10 +MAINTAINER="maintainer@slitaz.org" 2.11 +LICENSE="GPL2" 2.12 +WEB_SITE="https://goodies.xfce.org/projects/applications/xfce4-notifyd" 2.13 + 2.14 +WANTED="xfce4-notifyd" 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 --- a/xfce4-notifyd/receipt Sat Aug 17 16:58:59 2024 +0100 3.2 +++ b/xfce4-notifyd/receipt Sat Aug 17 17:12:02 2024 +0100 3.3 @@ -2,15 +2,16 @@ 3.4 3.5 PACKAGE="xfce4-notifyd" 3.6 VERSION="0.2.2" 3.7 -HI_VERSION=$(echo $VERSION | cut -d. -f1,2) 3.8 CATEGORY="development" 3.9 SHORT_DESC="Simple, visually-appealing notification daemon for Xfce" 3.10 MAINTAINER="al.bobylev@gmail.com" 3.11 LICENSE="GPL2" 3.12 WEB_SITE="https://goodies.xfce.org/projects/applications/xfce4-notifyd" 3.13 + 3.14 TARBALL="$PACKAGE-$VERSION.tar.bz2" 3.15 -WGET_URL="https://archive.xfce.org/src/apps/$PACKAGE/$HI_VERSION/$TARBALL" 3.16 +WGET_URL="https://archive.xfce.org/src/apps/$PACKAGE/${VERSION%.*}/$TARBALL" 3.17 3.18 +SUGGESTED="xfce4-notifyd-lang" 3.19 DEPENDS="libxfce4ui" 3.20 BUILD_DEPENDS="libxfce4ui-dev libxfconf-dev" 3.21 3.22 @@ -25,11 +26,20 @@ 3.23 # Rules to configure and make the package. 3.24 compile_rules() 3.25 { 3.26 - ./configure --disable-debug $CONFIGURE_ARGS && make && make install 3.27 + ./configure \ 3.28 + --disable-debug \ 3.29 + --enable-nls \ 3.30 + $CONFIGURE_ARGS && 3.31 + make && 3.32 + make install 3.33 } 3.34 3.35 # Rules to gen a SliTaz package suitable for Tazpkg. 3.36 genpkg_rules() 3.37 { 3.38 - cp -a $install/* $fs 3.39 + cook_copy_folders bin 3.40 + cook_copy_folders icons 3.41 + cook_copy_folders lib 3.42 + cook_copy_folders services 3.43 + cook_copy_folders themes 3.44 }