wok annotate hexchat/receipt @ rev 18408
open-vm-tools: add wget and cacerts as deps
author | Nathan Neulinger <nneul@neulinger.org> |
---|---|
date | Sat Sep 19 14:21:42 2015 +0000 (2015-09-19) |
parents | 0dbc08309d5e |
children | 20ba6a60a92f |
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 |
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 } |