wok annotate 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
rev   line source
devl547@16176 1 # SliTaz package receipt.
devl547@16176 2
devl547@16176 3 PACKAGE="hexchat"
devl547@17564 4 VERSION="2.10.2"
devl547@16176 5 CATEGORY="network"
devl547@16176 6 SHORT_DESC="IRC client using GTK+"
devl547@16176 7 MAINTAINER="lenios@slitaz.org"
devl547@16176 8 LICENSE="GPL2"
al@16885 9 WEB_SITE="http://hexchat.github.io/"
devl547@16176 10 TARBALL="$PACKAGE-$VERSION.tar.xz"
devl547@16176 11 WGET_URL="http://dl.hexchat.net/hexchat/$TARBALL"
devl547@16176 12
pascal@17556 13 DEPENDS="gtk+ dbus openssl gettext-base dbus-glib xorg-libXdamage python \
pascal@17556 14 harfbuzz"
mojo@17527 15 BUILD_DEPENDS="gtk+-dev dbus-dev openssl-dev shared-mime-info python-dev"
devl547@16176 16
devl547@16176 17 # Rules to configure and make the package.
devl547@16176 18 compile_rules()
devl547@16176 19 {
al@16885 20 ./configure \
al@16885 21 --prefix=/usr \
al@16885 22 --infodir=/usr/share/info \
al@16885 23 --mandir=/usr/share/man \
al@16885 24 --disable-plugin \
al@16885 25 --disable-tcl \
al@16885 26 --enable-spell=static \
al@16885 27 --enable-ipv6 \
al@16885 28 $CONFIGURE_ARGS &&
al@16885 29 make &&
al@16885 30 make DESTDIR=$DESTDIR install
devl547@16176 31 }
devl547@16176 32
devl547@16176 33 # Rules to gen a SliTaz package suitable for Tazpkg.
devl547@16176 34 genpkg_rules()
devl547@16176 35 {
al@16885 36 mkdir -p $fs/usr
al@16885 37 cp -a $install/usr/bin $fs/usr
al@16885 38 # cp -a $install/usr/share/dbus-1 $fs/usr/share
devl547@16176 39 }