wok view gajim/receipt @ rev 24021

busybox: fix busybox-1.31-stat.u
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Mar 06 18:53:34 2021 +0000 (2021-03-06)
parents f4c22f009037
children af8d823a3077
line source
1 # SliTaz package receipt.
3 PACKAGE="gajim"
4 VERSION="0.14.1"
5 CATEGORY="network"
6 SHORT_DESC="Gtk Jabber client."
7 MAINTAINER="rocky@slitaz.org"
8 LICENSE="GPL3"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://www.gajim.org/"
11 WGET_URL="http://www.gajim.org/downloads/${VERSION%.*}/$TARBALL"
13 DEPENDS="gtkspell python dbus-python pygtk pygobject pyopenssl python-pysqlite \
14 xorg-libXss bind-client"
15 BUILD_DEPENDS="gettext xcb-util-dev enchant-dev xorg-scrnsaverproto \
16 xorg-xextproto python-dev libffi-dev intltool pygtk-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 ./configure $CONFIGURE_ARGS &&
22 make && make install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/share/pixmaps
29 cp -a $install/usr/bin $fs/usr
30 cp -a $install/usr/share/gajim $fs/usr/share
31 cp -a $install/usr/share/icons/hicolor/64x64/apps/gajim.png \
32 $fs/usr/share/pixmaps
33 cp -a $install/usr/share/applications $fs/usr/share
34 chmod +x $fs/usr/bin/*
35 }