wok view hexchat/receipt @ rev 16191

hexchat: update compile_rules
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Mar 30 18:53:26 2014 +0000 (2014-03-30)
parents 50db55539590
children e4fd343fd7b8
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 TARBALL="$PACKAGE-$VERSION.tar.xz"
10 WEB_SITE="http://hexchat.github.io/"
11 WGET_URL="http://dl.hexchat.net/hexchat/$TARBALL"
13 DEPENDS="gtk+ dbus openssl gettext 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 cd $src
20 ./configure --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 $fs/usr/share
37 cp -a $install/usr/bin $fs/usr
38 # cp -a $install/usr/share/dbus-1 $fs/usr/share
39 }