wok annotate gtkspell3/receipt @ rev 20255

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