wok rev 19201

Add gtkspell3
author Aleksej Bobylev <al.bobylev@gmail.com>
date Thu Jun 09 13:36:10 2016 +0300 (2016-06-09)
parents d54c165d2604
children d5596dfb8eb2
files gtkspell3-dev/receipt gtkspell3/description.txt gtkspell3/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/gtkspell3-dev/receipt	Thu Jun 09 13:36:10 2016 +0300
     1.3 @@ -0,0 +1,22 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="gtkspell3-dev"
     1.7 +VERSION="3.0.8"
     1.8 +CATEGORY="development"
     1.9 +SHORT_DESC="On-the-fly spell checking for GtkTextView widgets, development files"
    1.10 +MAINTAINER="al.bobylev@gmail.com"
    1.11 +LICENSE="GPL2"
    1.12 +WEB_SITE="http://gtkspell.sourceforge.net/"
    1.13 +HOST_ARCH="i486 arm"
    1.14 +
    1.15 +WANTED="gtkspell3"
    1.16 +DEPENDS="gtkspell3 glib-dev gtk+3-dev enchant-dev"
    1.17 +
    1.18 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.19 +genpkg_rules()
    1.20 +{
    1.21 +	mkdir -p $fs/usr/lib
    1.22 +	cp -a $install/usr/include $fs/usr
    1.23 +	cp -a $install/usr/lib/pkgconfig $fs/usr/lib
    1.24 +	cp -a $install/usr/lib/*.*a $fs/usr/lib
    1.25 +}
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/gtkspell3/description.txt	Thu Jun 09 13:36:10 2016 +0300
     2.3 @@ -0,0 +1,5 @@
     2.4 +GtkSpell is a library which provides MSWord/MacOSX-style highlighting of
     2.5 +misspelled words in a GtkTextView widget. Right-clicking a misspelled word pops
     2.6 +up a menu of suggested replacements.
     2.7 +
     2.8 +For more information, see http://sourceforge.net/projects/gtkspell/ .
     3.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     3.2 +++ b/gtkspell3/receipt	Thu Jun 09 13:36:10 2016 +0300
     3.3 @@ -0,0 +1,34 @@
     3.4 +# SliTaz package receipt.
     3.5 +
     3.6 +PACKAGE="gtkspell3"
     3.7 +VERSION="3.0.8"
     3.8 +CATEGORY="text"
     3.9 +SHORT_DESC="On-the-fly spell checking for GtkTextView widgets"
    3.10 +MAINTAINER="al.bobylev@gmail.com"
    3.11 +LICENSE="GPL2"
    3.12 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    3.13 +WEB_SITE="http://gtkspell.sourceforge.net/"
    3.14 +WGET_URL="$SF_MIRROR/gtkspell/$TARBALL"
    3.15 +HOST_ARCH="i486 arm"
    3.16 +
    3.17 +DEPENDS="enchant gtk+3"
    3.18 +BUILD_DEPENDS="gobject-introspection vala gtk+3-dev enchant-dev gtk-doc"
    3.19 +
    3.20 +# Rules to configure and make the package.
    3.21 +compile_rules()
    3.22 +{
    3.23 +	./configure $CONFIGURE_ARGS && make && make install
    3.24 +}
    3.25 +
    3.26 +# Rules to gen a SliTaz package suitable for Tazpkg.
    3.27 +genpkg_rules()
    3.28 +{
    3.29 +	mkdir -p $fs/usr/lib $fs/usr/share/locale
    3.30 +	cp -a $install/usr/lib/*.so* $fs/usr/lib
    3.31 +
    3.32 +	. $WOK/slitaz-i18n/stuff/locale-pack.conf
    3.33 +	for i in $LOCALE_PACK; do
    3.34 +		[ -d $install/usr/share/locale/$i ] &&
    3.35 +			cp -a $install/usr/share/locale/$i $fs/usr/share/locale
    3.36 +	done
    3.37 +}