wok view gajim/receipt @ rev 14999

Add GPL3 licenses
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Aug 10 13:52:56 2013 +0000 (2013-08-10)
parents 704351b90408
children f4c22f009037
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 LICENCE="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 xorg-libXss bind-client"
14 BUILD_DEPENDS="gettext xcb-util-dev enchant-dev xorg-scrnsaverproto xorg-xextproto \
15 python-dev libffi-dev intltool pygtk-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
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 $fs/usr/share/pixmaps
32 cp -a $install/usr/share/applications $fs/usr/share
33 chmod +x $fs/usr/bin/*
34 }