wok view hexchat/receipt @ rev 17047

Add tcpd (again)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Aug 20 12:19:17 2014 +0200 (2014-08-20)
parents 2cfe2a9f1d5b
children ec1c047ea51f
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 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 }