wok annotate hexchat/receipt @ rev 22351

umfpack: hide metis-4.0 missing
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Nov 18 16:07:36 2019 +0100 (2019-11-18)
parents ef93d8724597
children af8d823a3077
rev   line source
devl547@16176 1 # SliTaz package receipt.
devl547@16176 2
devl547@16176 3 PACKAGE="hexchat"
erkan@20080 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"
pascal@20669 9 WEB_SITE="https://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
devl547@17579 13 DEPENDS="gtk+ openssl gettext-base dbus-glib xorg-libXdamage \
pascal@17556 14 harfbuzz"
devl547@17579 15 BUILD_DEPENDS="gtk+-dev openssl-dev shared-mime-info"
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 \
devl547@17579 26 --disable-dbus \
devl547@17579 27 --disable-python \
al@16885 28 --enable-spell=static \
al@16885 29 --enable-ipv6 \
al@16885 30 $CONFIGURE_ARGS &&
al@16885 31 make &&
al@16885 32 make DESTDIR=$DESTDIR install
devl547@16176 33 }
devl547@16176 34
devl547@16176 35 # Rules to gen a SliTaz package suitable for Tazpkg.
devl547@16176 36 genpkg_rules()
devl547@16176 37 {
al@16885 38 mkdir -p $fs/usr
al@16885 39 cp -a $install/usr/bin $fs/usr
al@16885 40 # cp -a $install/usr/share/dbus-1 $fs/usr/share
devl547@16176 41 }