wok view gnome-doc-utils/receipt @ rev 22936

updated hunspell and hunspell-dev (1.3.3 -> 1.7.0)
author Hans-G?nter Theisgen
date Thu Feb 27 07:23:00 2020 +0100 (2020-02-27)
parents 16df76e1fc6a
children 6831608a1b2a
line source
1 # SliTaz package receipt.
3 PACKAGE="gnome-doc-utils"
4 VERSION="0.20.10"
5 CATEGORY="misc"
6 SHORT_DESC="Documentation utilities for Gnome"
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="GPL2 LGPL2.1"
9 TARBALL="$PACKAGE-$VERSION.tar.xz"
10 WEB_SITE="https://www.gnome.org/"
11 WGET_URL="$GNOME_MIRROR/$PACKAGE/${VERSION%.*}/$TARBALL"
13 DEPENDS="libxml2 libxslt python libxml2-python rarian docbook-xml"
14 BUILD_DEPENDS="libxml2-dev libxslt-dev rarian-dev libxml2-python pkg-config \
15 intltool"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure --prefix=/usr \
21 --infodir=/usr/share/info \
22 --sysconfdir=/etc \
23 --localstatedir=/var \
24 --disable-scrollkeeper \
25 --mandir=/usr/share/man $CONFIGURE_ARGS &&
26 make -j1 &&
27 make -j1 DESTDIR=$DESTDIR install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr/bin $fs/usr/share/locale
34 cp -a $install/usr/bin/gnome-doc-tool $fs/usr/bin
35 cp -a $install/usr/bin/xml2po $fs/usr/bin
36 cp -a $install/usr/share/xml $fs/usr/share
37 cp -a $install/usr/lib $fs/usr
38 }