# HG changeset patch # User Aleksej Bobylev # Date 1465468570 -10800 # Node ID 1d137d5555b7d11ab9d159b35f47727c598d60c0 # Parent d54c165d2604b1e67f9681a40ce975df4e2cdf71 Add gtkspell3 diff -r d54c165d2604 -r 1d137d5555b7 gtkspell3-dev/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gtkspell3-dev/receipt Thu Jun 09 13:36:10 2016 +0300 @@ -0,0 +1,22 @@ +# SliTaz package receipt. + +PACKAGE="gtkspell3-dev" +VERSION="3.0.8" +CATEGORY="development" +SHORT_DESC="On-the-fly spell checking for GtkTextView widgets, development files" +MAINTAINER="al.bobylev@gmail.com" +LICENSE="GPL2" +WEB_SITE="http://gtkspell.sourceforge.net/" +HOST_ARCH="i486 arm" + +WANTED="gtkspell3" +DEPENDS="gtkspell3 glib-dev gtk+3-dev enchant-dev" + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib + cp -a $install/usr/include $fs/usr + cp -a $install/usr/lib/pkgconfig $fs/usr/lib + cp -a $install/usr/lib/*.*a $fs/usr/lib +} diff -r d54c165d2604 -r 1d137d5555b7 gtkspell3/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gtkspell3/description.txt Thu Jun 09 13:36:10 2016 +0300 @@ -0,0 +1,5 @@ +GtkSpell is a library which provides MSWord/MacOSX-style highlighting of +misspelled words in a GtkTextView widget. Right-clicking a misspelled word pops +up a menu of suggested replacements. + +For more information, see http://sourceforge.net/projects/gtkspell/ . diff -r d54c165d2604 -r 1d137d5555b7 gtkspell3/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gtkspell3/receipt Thu Jun 09 13:36:10 2016 +0300 @@ -0,0 +1,34 @@ +# SliTaz package receipt. + +PACKAGE="gtkspell3" +VERSION="3.0.8" +CATEGORY="text" +SHORT_DESC="On-the-fly spell checking for GtkTextView widgets" +MAINTAINER="al.bobylev@gmail.com" +LICENSE="GPL2" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://gtkspell.sourceforge.net/" +WGET_URL="$SF_MIRROR/gtkspell/$TARBALL" +HOST_ARCH="i486 arm" + +DEPENDS="enchant gtk+3" +BUILD_DEPENDS="gobject-introspection vala gtk+3-dev enchant-dev gtk-doc" + +# Rules to configure and make the package. +compile_rules() +{ + ./configure $CONFIGURE_ARGS && make && make install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib $fs/usr/share/locale + cp -a $install/usr/lib/*.so* $fs/usr/lib + + . $WOK/slitaz-i18n/stuff/locale-pack.conf + for i in $LOCALE_PACK; do + [ -d $install/usr/share/locale/$i ] && + cp -a $install/usr/share/locale/$i $fs/usr/share/locale + done +}