wok rev 25720

added recipe for xfce4-appfinder-lang
author Hans-G?nter Theisgen
date Sat Aug 17 11:23:06 2024 +0100 (2 months ago)
parents 47bcd0dbdd37
children 8cd09f5847ca
files xfce4-appfinder-lang/receipt xfce4-appfinder/description.txt xfce4-appfinder/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/xfce4-appfinder-lang/receipt	Sat Aug 17 11:23:06 2024 +0100
     1.3 @@ -0,0 +1,17 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="xfce4-appfinder-lang"
     1.7 +VERSION="4.12.0"
     1.8 +CATEGORY="localization"
     1.9 +SHORT_DESC="Xfce Application Finder - localised messages."
    1.10 +MAINTAINER="maintainer@slitaz.org"
    1.11 +LICENSE="GPL2"
    1.12 +WEB_SITE="https://www.xfce.org"
    1.13 +
    1.14 +WANTED="xfce4-appfinder"
    1.15 +
    1.16 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.17 +genpkg_rules()
    1.18 +{
    1.19 +	cook_copy_folders	locale
    1.20 +}
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/xfce4-appfinder/description.txt	Sat Aug 17 11:23:06 2024 +0100
     2.3 @@ -0,0 +1,4 @@
     2.4 +The Application Finder is a program to find and launch
     2.5 +installed applications on the system, and quickly execute commands.
     2.6 +It does this by searching the file system for .desktop files,
     2.7 +and displays a categorised list of all the GUI applications on the system.
     3.1 --- a/xfce4-appfinder/receipt	Sat Aug 17 09:36:01 2024 +0100
     3.2 +++ b/xfce4-appfinder/receipt	Sat Aug 17 11:23:06 2024 +0100
     3.3 @@ -6,14 +6,16 @@
     3.4  SHORT_DESC="Xfce Application Finder"
     3.5  MAINTAINER="erjo@slitaz.org"
     3.6  LICENSE="GPL2"
     3.7 +WEB_SITE="https://www.xfce.org"
     3.8 +
     3.9  TARBALL="$PACKAGE-$VERSION.tar.bz2"
    3.10 -WEB_SITE="https://www.xfce.org"
    3.11  WGET_URL="https://archive.xfce.org/src/xfce/$PACKAGE/${VERSION%.*}/$TARBALL"
    3.12  
    3.13 -DEPENDS="gtk+ garcon libxfce4ui xfconf thunar gamin dbus-glib startup-notification \
    3.14 - garcon util-linux-uuid"
    3.15 -BUILD_DEPENDS="intltool libxfce4util-dev libxfce4ui-dev garcon-dev xfconf-dev \
    3.16 - startup-notification-dev dbus-glib-dev util-linux-uuid-dev xcb-util-dev"
    3.17 +SUGGESTED="xfce4-appfinder-lang"
    3.18 +DEPENDS="dbus-glib gamin garcon gtk+ libxfce4ui startup-notification
    3.19 +	thunar util-linux-uuid xfconf"
    3.20 +BUILD_DEPENDS="dbus-glib-dev garcon-dev intltool libxfce4ui-dev libxfce4util-dev
    3.21 +	startup-notification-dev util-linux-uuid-dev xcb-util-dev xfconf-dev"
    3.22  
    3.23  # What is the latest version available today?
    3.24  current_version()
    3.25 @@ -26,18 +28,21 @@
    3.26  # Rules to configure and make the package.
    3.27  compile_rules()
    3.28  {
    3.29 -	cd $src
    3.30 -	./configure --prefix=/usr \
    3.31 -		--disable-static \
    3.32 -		--disable-debug $CONFIGURE_ARGS && 
    3.33 -	make && make DESTDIR=$DESTDIR install
    3.34 +	./configure			\
    3.35 +		--prefix=/usr		\
    3.36 +		--disable-static	\
    3.37 +		--disable-debug		\
    3.38 +		--enable-nls		\
    3.39 +		$CONFIGURE_ARGS && 
    3.40 +	make &&
    3.41 +	make install DESTDIR=$DESTDIR
    3.42  }
    3.43  
    3.44  # Rules to gen a SliTaz package suitable for Tazpkg.
    3.45  genpkg_rules()
    3.46  {
    3.47 -	mkdir -p $fs/usr/share/locale
    3.48 -	cp -a $install/usr/bin $fs/usr
    3.49 -	cp -a $install/usr/share/applications $fs/usr/share
    3.50 +	mkdir -p $fs/usr/share
    3.51 +
    3.52 +	cp -a $install/usr/bin			$fs/usr
    3.53 +	cp -a $install/usr/share/applications	$fs/usr/share
    3.54  }
    3.55 -