wok view hexchat/receipt @ rev 17527

xchat,hexchat: enable ssl
author Richard Dunbar <mojo@slitaz.org>
date Mon Jan 19 03:01:45 2015 -0500 (2015-01-19)
parents e4fd343fd7b8
children c9f94dc6f61a
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 BUILD_DEPENDS="gtk+-dev dbus-dev openssl-dev shared-mime-info python-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure \
20 --prefix=/usr \
21 --infodir=/usr/share/info \
22 --mandir=/usr/share/man \
23 --disable-plugin \
24 --disable-tcl \
25 --enable-spell=static \
26 --enable-ipv6 \
27 $CONFIGURE_ARGS &&
28 make &&
29 make DESTDIR=$DESTDIR install
30 }
32 # Rules to gen a SliTaz package suitable for Tazpkg.
33 genpkg_rules()
34 {
35 mkdir -p $fs/usr
36 cp -a $install/usr/bin $fs/usr
37 # cp -a $install/usr/share/dbus-1 $fs/usr/share
38 }