wok view xchat-plugin/receipt @ rev 20701

updated airgeddon (3.31 -> 8.12)
author Hans-G?nter Theisgen
date Tue Feb 05 17:16:21 2019 +0100 (2019-02-05)
parents 380ffe05937a
children 535c806240cc
line source
1 # SliTaz package receipt.
3 PACKAGE="xchat-plugin"
4 VERSION="2.8.8"
5 CATEGORY="network"
6 SHORT_DESC="IRC client using GTK+ with plugins support"
7 MAINTAINER="lenios@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="http://www.xchat.org/"
10 SOURCE="xchat"
11 TARBALL="$SOURCE-$VERSION.tar.bz2"
12 WGET_URL="http://www.xchat.org/files/source/${VERSION%.*}/$TARBALL"
13 PROVIDE="xchat"
15 DEPENDS="gtk+ dbus openssl gettext-base dbus-glib xorg-libXdamage"
16 BUILD_DEPENDS="gtk+-dev dbus-dev openssl shared-mime-info"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 sed -i -e 's|glib/gslist.h|glib.h|' -e 's|glib/giochannel.h|glib.h|' \
22 -e 's|glib/glist.h|glib.h|' -e 's|glib/gstrfuncs.h|glib.h|' \
23 -e 's|glib/gutils.h|glib.h|' src/common/xchat.h
24 sed -i 's|glib/ghash.h|glib.h|' src/common/servlist.c src/common/text.c
25 sed -i 's|glib/gmarkup.h|glib.h|' src/common/util.c
27 ./configure \
28 --prefix=/usr \
29 --infodir=/usr/share/info \
30 --mandir=/usr/share/man \
31 --disable-tcl \
32 --enable-spell=static \
33 --enable-ipv6 \
34 $CONFIGURE_ARGS &&
35 make &&
36 make DESTDIR=$DESTDIR install
37 }
39 # Rules to gen a SliTaz package suitable for Tazpkg.
40 genpkg_rules()
41 {
42 mkdir -p $fs/usr
43 cp -a $install/usr/bin $fs/usr
44 # cp -a $install/usr/share/dbus-1 $fs/usr/share
45 }