wok rev 11217

Add from wok-undigest: ayttm billardgl blackbox bleachbit blueman brasero
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Nov 03 22:02:37 2011 +0100 (2011-11-03)
parents 7df05207d343
children 55d75f0e3533
files ayttm/receipt billardgl/receipt blackbox/receipt blackbox/stuff/blackbox-0.70.1-asneeded.patch blackbox/stuff/blackbox-0.70.1-gcc-4.3.patch blackbox/stuff/textpropertytostring-unconditional.patch bleachbit/receipt blueman/receipt brasero/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/ayttm/receipt	Thu Nov 03 22:02:37 2011 +0100
     1.3 @@ -0,0 +1,34 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="ayttm"
     1.7 +VERSION="0.6.3"
     1.8 +CATEGORY="network"
     1.9 +SHORT_DESC="Universal instant messenger client"
    1.10 +MAINTAINER="devl547@gmail.com"
    1.11 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.12 +WEB_SITE="http://ayttm.sourceforge.net/"
    1.13 +WGET_URL="http://downloads.sourceforge.net/project/$PACKAGE/$PACKAGE/$VERSION/$TARBALL"
    1.14 +BUILD_DEPENDS="gtk+-dev zlib-dev audiofile-dev xcb-util-dev openssl-dev flex enchant-dev"
    1.15 +DEPENDS="gtk+ zlib audiofile xcb-util openssl enchant aspell"
    1.16 +
    1.17 +# Rules to configure and make the package.
    1.18 +compile_rules()
    1.19 +{
    1.20 +	cd $src
    1.21 +	./configure --prefix=/usr --infodir=/usr/share/info \
    1.22 +	--mandir=/usr/share/man $CONFIGURE_ARGS \
    1.23 +	--disable-webcam --disable-esd --disable-arts --disable-webcam \
    1.24 +	--enable-lj &&
    1.25 +	make && make install
    1.26 +}
    1.27 +
    1.28 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.29 +genpkg_rules()
    1.30 +{
    1.31 +	mkdir -p $fs/usr/
    1.32 +	mkdir -p $fs/etc/
    1.33 +	cp -a $install/usr/bin $fs/usr
    1.34 +	cp -a $install/usr/lib $fs/usr
    1.35 +	cp -a $install/usr/share/ $fs/usr
    1.36 +	cp $install/usr/etc/ayttmrc $fs/etc/ayttmrc
    1.37 +}
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/billardgl/receipt	Thu Nov 03 22:02:37 2011 +0100
     2.3 @@ -0,0 +1,36 @@
     2.4 +# SliTaz package receipt.
     2.5 +
     2.6 +PACKAGE="billardgl"
     2.7 +VERSION="1.75"
     2.8 +CATEGORY="games"
     2.9 +SHORT_DESC="OpenGL billard game."
    2.10 +MAINTAINER="pascal.bellard@slitaz.org"
    2.11 +SOURCE="BillardGL"
    2.12 +TARBALL="$SOURCE-$VERSION.tar.gz"
    2.13 +WEB_SITE="http://www.billardgl.de/"
    2.14 +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
    2.15 +
    2.16 +DEPENDS="libglu-mesa freeglut"
    2.17 +BUILD_DEPENDS="libglu-mesa xorg-libXmu-dev xorg-libXi-dev mesa-dev freeglut-dev"
    2.18 +
    2.19 +# Rules to configure and make the package.
    2.20 +compile_rules()
    2.21 +{
    2.22 +	cd $src/src
    2.23 +	sed -i 's/stream.h/stream/' bmp.cpp
    2.24 +	grep -q namespace bmp.cpp ||
    2.25 +	sed -i 's/"bmp.h"/"bmp.h"\nusing namespace std;/' bmp.cpp
    2.26 +	make || return 1
    2.27 +	mkdir -p $DESTDIR/usr/share/BillardGL  $DESTDIR/usr/games
    2.28 +	cp $src/src/BillardGL $DESTDIR/usr/games
    2.29 +	cp -R $src/src/Texturen $DESTDIR/usr/share/BillardGL
    2.30 +	cp -R $src/src/lang $DESTDIR/usr/share/BillardGL
    2.31 +	cp -R $src/src/README $DESTDIR/usr/share/BillardGL
    2.32 +}
    2.33 +
    2.34 +# Rules to gen a SliTaz package suitable for Tazpkg.
    2.35 +genpkg_rules()
    2.36 +{
    2.37 +	cp -a $_pkg/usr $fs
    2.38 +}
    2.39 +
     3.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     3.2 +++ b/blackbox/receipt	Thu Nov 03 22:02:37 2011 +0100
     3.3 @@ -0,0 +1,38 @@
     3.4 +# SliTaz package receipt.
     3.5 +
     3.6 +PACKAGE="blackbox"
     3.7 +VERSION="0.70.1"
     3.8 +CATEGORY="x-window"
     3.9 +SHORT_DESC="A small, fast, full-featured window manager for X"
    3.10 +MAINTAINER="devl547@gmail.com"
    3.11 +TARBALL="$PACKAGE-$VERSION.tar.bz2"
    3.12 +WEB_SITE="http://blackboxwm.sourceforge.net/"
    3.13 +WGET_URL="$SF_MIRROR/blackboxwm/$TARBALL"
    3.14 +
    3.15 +DEPENDS="xorg-libXt xorg-libXft"
    3.16 +BUILD_DEPENDS="xorg-libXt-dev xorg-libXft-dev xorg-xextproto"
    3.17 +
    3.18 +# TODO: modify tazx for blackbox so it will creat a correct ~/.xinitrc
    3.19 +# to let user use the wm via slim/F1 or by default with 'tazx blackbox'.
    3.20 +
    3.21 +# Rules to configure and make the package.
    3.22 +compile_rules()
    3.23 +{
    3.24 +	cd $src
    3.25 +	patch -p1 < $stuff/blackbox-0.70.1-gcc-4.3.patch
    3.26 +	patch -p0 < $stuff/blackbox-0.70.1-asneeded.patch
    3.27 +	patch -p1 < $stuff/textpropertytostring-unconditional.patch
    3.28 +	./configure --sysconfdir=/etc \
    3.29 +	--libexecdir=/usr/bin --mandir=/usr/share/man \
    3.30 +	$CONFIGURE_ARGS &&
    3.31 +	make &&
    3.32 +	make DESTDIR=$DESTDIR install
    3.33 +}
    3.34 +
    3.35 +# Rules to gen a SliTaz package suitable for Tazpkg.
    3.36 +genpkg_rules()
    3.37 +{
    3.38 +	mkdir -p $fs/usr/share
    3.39 +	cp -a $_pkg/usr/bin $fs/usr
    3.40 +	cp -a $_pkg/usr/share/blackbox $fs/usr/share
    3.41 +}
     4.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     4.2 +++ b/blackbox/stuff/blackbox-0.70.1-asneeded.patch	Thu Nov 03 22:02:37 2011 +0100
     4.3 @@ -0,0 +1,49 @@
     4.4 +Fixing build with as-needed. Enabling shared libs.
     4.5 +
     4.6 +http://bugs.gentoo.org/show_bug.cgi?id=248549
     4.7 + 
     4.8 +--- src/Makefile.am
     4.9 ++++ src/Makefile.am
    4.10 +@@ -22,7 +22,7 @@
    4.11 + 
    4.12 + DEFAULT_MENU		= $(pkgdatadir)/menu
    4.13 + DEFAULT_STYLE		= $(pkgdatadir)/styles/Gray
    4.14 +-CPPFLAGS		= @CPPFLAGS@ @SHAPE@ @XFT@ @DEBUG@ @NLS@ \
    4.15 ++AM_CPPFLAGS		= @SHAPE@ @XFT@ @DEBUG@ @NLS@ \
    4.16 + 			  -DLOCALEPATH=\"$(pkgdatadir)/nls\" \
    4.17 + 			  -DDEFAULTMENU=\"$(DEFAULT_MENU)\" \
    4.18 + 			  -DDEFAULTSTYLE=\"$(DEFAULT_STYLE)\" \
    4.19 +--- lib/Makefile.am
    4.20 ++++ lib/Makefile.am
    4.21 +@@ -62,7 +62,8 @@
    4.22 + 			Util.hh						\
    4.23 + 			XDG.hh
    4.24 + 
    4.25 +-libbt_la_LIBADD =	@ICONV@ @LOCALE@
    4.26 ++libbt_la_LIBADD =	@ICONV@ @LOCALE@ @xft_LIBS@
    4.27 ++libbt_la_CFLAGS = 	@xft_CFLAGS@
    4.28 + 
    4.29 + pkgconfigdir = 		$(libdir)/pkgconfig
    4.30 + nodist_pkgconfig_DATA =	libbt.pc
    4.31 +--- util/Makefile.am
    4.32 ++++ util/Makefile.am
    4.33 +@@ -21,7 +21,7 @@
    4.34 + # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 
    4.35 + # DEALINGS IN THE SOFTWARE.
    4.36 + 
    4.37 +-CPPFLAGS		= @CPPFLAGS@ @DEBUG@ @NLS@ \
    4.38 ++AM_CPPFLAGS		= @DEBUG@ @NLS@ \
    4.39 + 			  -I$(top_srcdir)/lib
    4.40 + 
    4.41 + bin_SCRIPTS		= bsetbg
    4.42 +--- configure.ac
    4.43 ++++ configure.ac
    4.44 +@@ -29,7 +29,7 @@
    4.45 + AC_PROG_INSTALL
    4.46 + 
    4.47 + dnl libbt shouldn't be shared by default (yet)
    4.48 +-AC_DISABLE_SHARED
    4.49 ++dnl AC_DISABLE_SHARED
    4.50 + AC_PROG_LIBTOOL
    4.51 + AC_SUBST(LIBTOOL_DEPS)
    4.52 + 
     5.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     5.2 +++ b/blackbox/stuff/blackbox-0.70.1-gcc-4.3.patch	Thu Nov 03 22:02:37 2011 +0100
     5.3 @@ -0,0 +1,106 @@
     5.4 +diff -Naupr blackbox-0.70.1.orig/lib/Image.cc blackbox-0.70.1/lib/Image.cc
     5.5 +--- blackbox-0.70.1.orig/lib/Image.cc	2005-04-08 17:41:09.000000000 +0200
     5.6 ++++ blackbox-0.70.1/lib/Image.cc	2008-02-24 08:31:28.000000000 +0100
     5.7 +@@ -42,8 +42,9 @@
     5.8 + 
     5.9 + #include <assert.h>
    5.10 + #include <math.h>
    5.11 +-#include <stdio.h>
    5.12 +-#include <stdlib.h>
    5.13 ++#include <cstdio>
    5.14 ++#include <cstdlib>
    5.15 ++#include <cstring>
    5.16 + 
    5.17 + // #define COLORTABLE_DEBUG
    5.18 + // #define MITSHM_DEBUG
    5.19 +diff -Naupr blackbox-0.70.1.orig/lib/Resource.cc blackbox-0.70.1/lib/Resource.cc
    5.20 +--- blackbox-0.70.1.orig/lib/Resource.cc	2005-04-06 23:16:50.000000000 +0200
    5.21 ++++ blackbox-0.70.1/lib/Resource.cc	2008-02-24 08:33:11.000000000 +0100
    5.22 +@@ -28,7 +28,8 @@
    5.23 + #include <X11/Xlib.h>
    5.24 + #include <X11/Xresource.h>
    5.25 + 
    5.26 +-#include <stdio.h>
    5.27 ++#include <cstdio>
    5.28 ++#include <cstring>
    5.29 + 
    5.30 + 
    5.31 + bt::Resource::Resource(void)
    5.32 +diff -Naupr blackbox-0.70.1.orig/lib/XDG.cc blackbox-0.70.1/lib/XDG.cc
    5.33 +--- blackbox-0.70.1.orig/lib/XDG.cc	2005-04-06 16:04:38.000000000 +0200
    5.34 ++++ blackbox-0.70.1/lib/XDG.cc	2008-02-24 08:34:11.000000000 +0100
    5.35 +@@ -25,7 +25,8 @@
    5.36 + #include "Util.hh"
    5.37 + #include "XDG.hh"
    5.38 + 
    5.39 +-#include <stdlib.h>
    5.40 ++#include <cstdlib>
    5.41 ++#include <algorithm>
    5.42 + 
    5.43 + 
    5.44 + // make sure directory names end with a slash
    5.45 +diff -Naupr blackbox-0.70.1.orig/src/BlackboxResource.cc blackbox-0.70.1/src/BlackboxResource.cc
    5.46 +--- blackbox-0.70.1.orig/src/BlackboxResource.cc	2005-10-18 09:34:46.000000000 +0200
    5.47 ++++ blackbox-0.70.1/src/BlackboxResource.cc	2008-02-24 08:34:49.000000000 +0100
    5.48 +@@ -33,6 +33,8 @@
    5.49 + #include <X11/Xutil.h>
    5.50 + #include <X11/cursorfont.h>
    5.51 + 
    5.52 ++#include <cstring>
    5.53 ++
    5.54 + 
    5.55 + BlackboxResource::BlackboxResource(const std::string& rc): rc_file(rc) {
    5.56 +   screen_resources = 0;
    5.57 +diff -Naupr blackbox-0.70.1.orig/src/main.cc blackbox-0.70.1/src/main.cc
    5.58 +--- blackbox-0.70.1.orig/src/main.cc	2005-01-03 10:42:57.000000000 +0100
    5.59 ++++ blackbox-0.70.1/src/main.cc	2008-02-24 08:37:16.000000000 +0100
    5.60 +@@ -34,7 +34,8 @@
    5.61 + #include "blackbox.hh"
    5.62 + #include "../version.h"
    5.63 + 
    5.64 +-#include <stdio.h>
    5.65 ++#include <cstdio>
    5.66 ++#include <cstring>
    5.67 + 
    5.68 + 
    5.69 + static void showHelp(int exitval) {
    5.70 +diff -Naupr blackbox-0.70.1.orig/src/Screen.cc blackbox-0.70.1/src/Screen.cc
    5.71 +--- blackbox-0.70.1.orig/src/Screen.cc	2005-10-18 10:07:22.000000000 +0200
    5.72 ++++ blackbox-0.70.1/src/Screen.cc	2008-02-24 08:35:46.000000000 +0100
    5.73 +@@ -45,8 +45,9 @@
    5.74 + #include <sys/types.h>
    5.75 + #include <sys/stat.h>
    5.76 + #include <assert.h>
    5.77 +-#include <ctype.h>
    5.78 + #include <dirent.h>
    5.79 ++#include <cctype>
    5.80 ++#include <cstring>
    5.81 + 
    5.82 + 
    5.83 + static bool running = true;
    5.84 +diff -Naupr blackbox-0.70.1.orig/src/ScreenResource.cc blackbox-0.70.1/src/ScreenResource.cc
    5.85 +--- blackbox-0.70.1.orig/src/ScreenResource.cc	2005-04-13 07:54:08.000000000 +0200
    5.86 ++++ blackbox-0.70.1/src/ScreenResource.cc	2008-02-24 08:36:31.000000000 +0100
    5.87 +@@ -33,6 +33,8 @@
    5.88 + 
    5.89 + #include <assert.h>
    5.90 + 
    5.91 ++#include <cstring>
    5.92 ++
    5.93 + 
    5.94 + static const int iconify_width  = 9;
    5.95 + static const int iconify_height = 9;
    5.96 +diff -Naupr blackbox-0.70.1.orig/util/bsetroot.cc blackbox-0.70.1/util/bsetroot.cc
    5.97 +--- blackbox-0.70.1.orig/util/bsetroot.cc	2005-03-15 08:01:37.000000000 +0100
    5.98 ++++ blackbox-0.70.1/util/bsetroot.cc	2008-02-24 08:38:41.000000000 +0100
    5.99 +@@ -30,7 +30,9 @@
   5.100 + #include <cctype>
   5.101 + 
   5.102 + #include <X11/Xatom.h>
   5.103 +-#include <stdio.h>
   5.104 ++#include <cstdio>
   5.105 ++#include <cstdlib>
   5.106 ++#include <cstring>
   5.107 + 
   5.108 + 
   5.109 + // ignore all X errors
     6.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     6.2 +++ b/blackbox/stuff/textpropertytostring-unconditional.patch	Thu Nov 03 22:02:37 2011 +0100
     6.3 @@ -0,0 +1,28 @@
     6.4 +Description: Declare bt::textPropertyToString unconditionally.
     6.5 +Author: Jakub Wilk <jwilk@debian.org>
     6.6 +Forwarded: no
     6.7 +Bug-Debian: http://bugs.debian.org/614468
     6.8 +Last-Update: 2011-03-12
     6.9 +
    6.10 +--- a/lib/Util.hh
    6.11 ++++ b/lib/Util.hh
    6.12 +@@ -25,6 +25,8 @@
    6.13 + #ifndef __Util_hh
    6.14 + #define __Util_hh
    6.15 + 
    6.16 ++#include <X11/Xutil.h>
    6.17 ++
    6.18 + #include <limits.h>
    6.19 + #include <string>
    6.20 + 
    6.21 +@@ -94,10 +96,8 @@
    6.22 + 
    6.23 +   std::string tolower(const std::string &string);
    6.24 + 
    6.25 +-#ifdef _XUTIL_H_
    6.26 +   std::string textPropertyToString(::Display *display,
    6.27 +                                    ::XTextProperty& text_prop);
    6.28 +-#endif
    6.29 + 
    6.30 + } // namespace bt
    6.31 + 
     7.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     7.2 +++ b/bleachbit/receipt	Thu Nov 03 22:02:37 2011 +0100
     7.3 @@ -0,0 +1,28 @@
     7.4 +# SliTaz package receipt.
     7.5 +
     7.6 +PACKAGE="bleachbit"
     7.7 +VERSION="0.8.7"
     7.8 +CATEGORY="system-tools"
     7.9 +SHORT_DESC="Deletes unneeded files to free disk space and maintain privacy"
    7.10 +MAINTAINER="devl547@gmail.com"
    7.11 +TARBALL="$PACKAGE-$VERSION.tar.bz2"
    7.12 +WEB_SITE="http://bleachbit.sourceforge.net/"
    7.13 +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
    7.14 +BUILD_DEPENDS="python"
    7.15 +DEPENDS="pygtk python"
    7.16 +
    7.17 +# Rules to configure and make the package.
    7.18 +compile_rules()
    7.19 +{
    7.20 +	cd $src
    7.21 +	make -C po local &&
    7.22 +	make prefix=/usr DESTDIR=$DESTDIR install
    7.23 +}
    7.24 +
    7.25 +# Rules to gen a SliTaz package suitable for Tazpkg.
    7.26 +genpkg_rules()
    7.27 +{
    7.28 +	mkdir -p $fs/usr/
    7.29 +	cp -a $_pkg/usr/bin $fs/usr
    7.30 +	cp -a $_pkg/usr/share $fs/usr
    7.31 +}
     8.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     8.2 +++ b/blueman/receipt	Thu Nov 03 22:02:37 2011 +0100
     8.3 @@ -0,0 +1,43 @@
     8.4 +# SliTaz package receipt.
     8.5 +
     8.6 +PACKAGE="blueman"
     8.7 +VERSION="1.10"
     8.8 +CATEGORY="system-tools"
     8.9 +SHORT_DESC="Easy to use GTK+ Bluetooth Manager."
    8.10 +MAINTAINER="pankso@slitaz.org"
    8.11 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    8.12 +WEB_SITE="http://blueman-project.org/"
    8.13 +WGET_URL="http://download.tuxfamily.org/blueman/$TARBALL"
    8.14 +
    8.15 +DEPENDS="linux-bluetooth bluez python pygtk libnotify notify-python python-pyrex \
    8.16 +startup-notification util-linux-ng-uuid dbus dbus-python"
    8.17 +BUILD_DEPENDS="bluez-dev python-dev pygtk-dev notify-python libnotify-dev \
    8.18 +python-pyrex startup-notification-dev util-linux-ng-uuid-dev dbus-dev \
    8.19 +dbus-python-dev"
    8.20 +
    8.21 +# Rules to configure and make the package.
    8.22 +compile_rules()
    8.23 +{
    8.24 +	cd $src
    8.25 +	./configure \
    8.26 +		--prefix=/usr \
    8.27 +		--sysconfdir=/etc \
    8.28 +		--libexecdir=/usr/lib/$PACKAGE \
    8.29 +		$CONFIGURE_ARGS &&
    8.30 +	make && make install
    8.31 +}
    8.32 +
    8.33 +# Rules to gen a SliTaz package suitable for Tazpkg.
    8.34 +genpkg_rules()
    8.35 +{
    8.36 +	mkdir -p $fs/usr/share/pixmaps
    8.37 +	cp -a $install/usr/bin $fs/usr
    8.38 +	cp -a $install/usr/lib $fs/usr
    8.39 +	cp -a $install/usr/share/blueman $fs/usr/share
    8.40 +	cp -a $install/usr/share/hal $fs/usr/share
    8.41 +	cp -a $install/usr/share/dbus-1 $fs/usr/share
    8.42 +	cp -a $install/usr/share/PolicyKit $fs/usr/share
    8.43 +	cp -a $install/usr/share/icons/hicolor/32x32/apps/*.png \
    8.44 +		$fs/usr/share/pixmaps
    8.45 +	cp -a $install/etc $fs
    8.46 +}
     9.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     9.2 +++ b/brasero/receipt	Thu Nov 03 22:02:37 2011 +0100
     9.3 @@ -0,0 +1,43 @@
     9.4 +# SliTaz package receipt.
     9.5 +
     9.6 +PACKAGE="brasero"
     9.7 +VERSION="2.30.0"
     9.8 +CATEGORY="utilities"
     9.9 +SHORT_DESC="Brasero (aka Bonfire) is yet another application to burn CD/DVD for the gnome desktop."
    9.10 +MAINTAINER="devl547@gmail.com"
    9.11 +TARBALL="$PACKAGE-$VERSION.tar.bz2"
    9.12 +WEB_SITE="http://www.gnome.org/projects/brasero"
    9.13 +WGET_URL="http://ftp.gnome.org/pub/GNOME/sources/$PACKAGE/2.30/$TARBALL"
    9.14 +
    9.15 +DEPENDS="glib gtk+ GConf gstreamer gst-plugins-base libxml2 libunique \
    9.16 +dbus-glib cdrdao dvd+rw-tools libcanberra libvorbis libogg"
    9.17 +BUILD_DEPENDS="glib-dev gtk+-dev GConf-dev gstreamer-dev gst-plugins-base-dev \
    9.18 +libxml2-dev libunique-dev dbus-glib-dev gnome-doc-utils-dev libxcb-dev \
    9.19 +libpthread-stubs xcb-util-dev ORBit2-dev dbus-dev libcanberra-dev \
    9.20 +gnome-doc-utils libxml2-python libvorbis-dev libogg-dev util-linux-ng-uuid-dev"
    9.21 +
    9.22 +# Rules to configure and make the package.
    9.23 +compile_rules()
    9.24 +{
    9.25 +	cd $src
    9.26 +	./configure \
    9.27 +		--prefix=/usr \
    9.28 +		--disable-schemas-install \
    9.29 +		--disable-scrollkeeper \
    9.30 +		--disable-caches \
    9.31 +		--disable-gtk-doc-html \
    9.32 +		--disable-nautilus \
    9.33 +		--disable-gtk-doc \
    9.34 +		--disable-search \
    9.35 +		--disable-playlist &&
    9.36 +	make &&
    9.37 +	make DESTDIR=$PWD/_pkg install
    9.38 +}
    9.39 +
    9.40 +# Rules to gen a SliTaz package suitable for Tazpkg.
    9.41 +genpkg_rules()
    9.42 +{
    9.43 +	mkdir -p $fs/usr/share
    9.44 +	cp -a $_pkg/usr/bin $fs/usr/
    9.45 +	cp -a $_pkg/usr/share/applications $fs/usr/share/applications
    9.46 +}