wok view hexchat/receipt @ rev 17564

Up: hexchat 2.10.2
author Alexander Medvedev <devl547@gmail.com>
date Sat Feb 07 17:14:34 2015 +0000 (2015-02-07)
parents c9f94dc6f61a
children e2a4e6383f52
line source
1 # SliTaz package receipt.
3 PACKAGE="hexchat"
4 VERSION="2.10.2"
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 }