wok view hexchat/receipt @ rev 17556

hexchat: update deps (bug 129 fix)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Feb 02 22:45:45 2015 +0100 (2015-02-02)
parents ec1c047ea51f
children 0dbc08309d5e
line source
1 # SliTaz package receipt.
3 PACKAGE="hexchat"
4 VERSION="2.9.6.1"
5 CATEGORY="network"
6 SHORT_DESC="IRC client using GTK+"
7 MAINTAINER="lenios@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="http://hexchat.github.io/"
10 TARBALL="$PACKAGE-$VERSION.tar.xz"
11 WGET_URL="http://dl.hexchat.net/hexchat/$TARBALL"
13 DEPENDS="gtk+ dbus openssl gettext-base dbus-glib xorg-libXdamage python \
14 harfbuzz"
15 BUILD_DEPENDS="gtk+-dev dbus-dev openssl-dev shared-mime-info python-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure \
21 --prefix=/usr \
22 --infodir=/usr/share/info \
23 --mandir=/usr/share/man \
24 --disable-plugin \
25 --disable-tcl \
26 --enable-spell=static \
27 --enable-ipv6 \
28 $CONFIGURE_ARGS &&
29 make &&
30 make DESTDIR=$DESTDIR install
31 }
33 # Rules to gen a SliTaz package suitable for Tazpkg.
34 genpkg_rules()
35 {
36 mkdir -p $fs/usr
37 cp -a $install/usr/bin $fs/usr
38 # cp -a $install/usr/share/dbus-1 $fs/usr/share
39 }