wok view gtkspell3/receipt @ rev 21820

syslinux/kbd: check kbd malloc pointer
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Aug 25 11:41:26 2019 +0200 (2019-08-25)
parents
children c72d83acf68f
line source
1 # SliTaz package receipt.
3 PACKAGE="gtkspell3"
4 VERSION="3.0.8"
5 CATEGORY="text"
6 SHORT_DESC="On-the-fly spell checking for GtkTextView widgets"
7 MAINTAINER="al.bobylev@gmail.com"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://gtkspell.sourceforge.net/"
11 WGET_URL="$SF_MIRROR/gtkspell/$TARBALL"
12 HOST_ARCH="i486 arm"
14 DEPENDS="enchant gtk+3"
15 BUILD_DEPENDS="gobject-introspection vala gtk+3-dev enchant-dev gtk-doc"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure $CONFIGURE_ARGS && make && make install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/lib $fs/usr/share/locale
27 cp -a $install/usr/lib/*.so* $fs/usr/lib
29 . $WOK/slitaz-i18n/stuff/locale-pack.conf
30 for i in $LOCALE_PACK; do
31 [ -d $install/usr/share/locale/$i ] &&
32 cp -a $install/usr/share/locale/$i $fs/usr/share/locale
33 done
34 }