wok-next view hexchat/receipt @ rev 21268

updated frogatto (1.3.1 -> 1.3.3)
author Hans-G?nter Theisgen
date Fri Dec 06 17:30:20 2019 +0100 (2019-12-06)
parents f48456621a9d
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="hexchat"
4 VERSION="2.12.4"
5 CATEGORY="network"
6 SHORT_DESC="IRC client using GTK+"
7 MAINTAINER="devel@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://hexchat.github.io/"
11 TARBALL="$PACKAGE-$VERSION.tar.xz"
12 WGET_URL="https://dl.hexchat.net/hexchat/$TARBALL"
14 BUILD_DEPENDS="automake autoconf-archive libtool intltool gtk2-dev perl-dev \
15 python-dev openssl-dev pciutils-dev dbus-glib-dev libnotify-dev \
16 libcanberra-dev iso-codes" # libproxy-dev
17 SPLIT="$PACKAGE-plugin-perl $PACKAGE-plugin-python $PACKAGE $PACKAGE-dev"
19 compile_rules() {
20 autoreconf -fi &&
21 sed -i '/_Keywords=/d; /Actions=/d' $src/data/misc/hexchat.desktop.in.in &&
22 ./configure \
23 --disable-lua \
24 $CONFIGURE_ARGS &&
25 fix libtool &&
26 make &&
27 make install
28 }
30 genpkg_rules() {
31 case $PACKAGE in
32 *-perl)
33 copy perl.so
34 DEPENDS="glib perl-core hexchat"
35 ;;
36 *-python)
37 copy python.so
38 DEPENDS="glib python hexchat"
39 ;;
40 hexchat)
41 copy @std @rm
42 rm -r $fs/usr/share/appdata/
43 DEPENDS="dbus-glib gdk-pixbuf glib gtk2 libcanberra libnotify \
44 openssl pango pciutils"
45 ;;
46 *-dev)
47 copy @dev
48 ;;
49 esac
50 }