wok-6.x rev 24634
updated gtkspell3 and gtkspell3-dev (3.0.8 -> 3.0.10)
author | Hans-G?nter Theisgen |
---|---|
date | Tue Mar 08 17:40:10 2022 +0100 (2022-03-08) |
parents | 6e50f5c59b97 |
children | 557ce542960d |
files | gtkspell3-dev/receipt gtkspell3-lang/receipt gtkspell3/receipt |
line diff
1.1 --- a/gtkspell3-dev/receipt Tue Mar 08 16:29:56 2022 +0100 1.2 +++ b/gtkspell3-dev/receipt Tue Mar 08 17:40:10 2022 +0100 1.3 @@ -1,12 +1,12 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="gtkspell3-dev" 1.7 -VERSION="3.0.8" 1.8 +VERSION="3.0.10" 1.9 CATEGORY="development" 1.10 SHORT_DESC="On-the-fly spell checking for GtkTextView widgets, development files." 1.11 MAINTAINER="al.bobylev@gmail.com" 1.12 LICENSE="GPL2" 1.13 -WEB_SITE="http://gtkspell.sourceforge.net/" 1.14 +WEB_SITE="https://sourceforge.net/projects/gtkspell/" 1.15 1.16 DEPENDS="enchant-dev glib-dev gtk+3-dev gtkspell3 pkg-config" 1.17 WANTED="gtkspell3" 1.18 @@ -16,9 +16,7 @@ 1.19 # Rules to gen a SliTaz package suitable for Tazpkg. 1.20 genpkg_rules() 1.21 { 1.22 - mkdir -p $fs/usr/lib 1.23 - 1.24 - cp -a $install/usr/include $fs/usr 1.25 - cp -a $install/usr/lib/pkgconfig $fs/usr/lib 1.26 - cp -a $install/usr/lib/*.*a $fs/usr/lib 1.27 + cook_copy_folders include 1.28 + cook_copy_folders pkgconfig 1.29 + cook_copy_files *.*a 1.30 }
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/gtkspell3-lang/receipt Tue Mar 08 17:40:10 2022 +0100 2.3 @@ -0,0 +1,17 @@ 2.4 +# SliTaz package receipt. 2.5 + 2.6 +PACKAGE="gtkspell3-lang" 2.7 +VERSION="3.0.10" 2.8 +CATEGORY="localization" 2.9 +SHORT_DESC="On-the-fly spell checking for GtkTextView widgets - localised messages." 2.10 +MAINTAINER="al.bobylev@gmail.com" 2.11 +LICENSE="GPL2" 2.12 +WEB_SITE="https://sourceforge.net/projects/gtkspell/" 2.13 + 2.14 +WANTED="gtkspell3" 2.15 + 2.16 +# Rules to gen a SliTaz package suitable for Tazpkg. 2.17 +genpkg_rules() 2.18 +{ 2.19 + cook_copy_folders locale 2.20 +}
3.1 --- a/gtkspell3/receipt Tue Mar 08 16:29:56 2022 +0100 3.2 +++ b/gtkspell3/receipt Tue Mar 08 17:40:10 2022 +0100 3.3 @@ -1,18 +1,20 @@ 3.4 # SliTaz package receipt. 3.5 3.6 PACKAGE="gtkspell3" 3.7 -VERSION="3.0.8" 3.8 +VERSION="3.0.10" 3.9 CATEGORY="text" 3.10 SHORT_DESC="On-the-fly spell checking for GtkTextView widgets." 3.11 MAINTAINER="al.bobylev@gmail.com" 3.12 LICENSE="GPL2" 3.13 -WEB_SITE="http://gtkspell.sourceforge.net/" 3.14 +WEB_SITE="https://sourceforge.net/projects/gtkspell/" 3.15 3.16 -TARBALL="$PACKAGE-$VERSION.tar.gz" 3.17 +TARBALL="$PACKAGE-$VERSION.tar.xz" 3.18 WGET_URL="$SF_MIRROR/gtkspell/$TARBALL" 3.19 3.20 -DEPENDS="enchant gtk+3" 3.21 -BUILD_DEPENDS="enchant-dev gobject-introspection gtk+3-dev gtk-doc vala" 3.22 +SUGGESTED="gtkspell3-lang" 3.23 +DEPENDS="enchant gtk+3 libxml2" 3.24 +BUILD_DEPENDS="aspell-dev enchant2-dev gobject-introspection gtk+3-dev 3.25 + gtk-doc libxml2-dev vala" 3.26 3.27 HOST_ARCH="i486 arm" 3.28 3.29 @@ -27,7 +29,11 @@ 3.30 # Rules to configure and make the package. 3.31 compile_rules() 3.32 { 3.33 - ./configure $CONFIGURE_ARGS && 3.34 + sed -i 's|/usr/bin/sh|/bin/sh|' build/install-sh 3.35 + 3.36 + ./configure \ 3.37 + --disable-dependency-tracking \ 3.38 + $CONFIGURE_ARGS && 3.39 make && 3.40 make install 3.41 } 3.42 @@ -35,15 +41,5 @@ 3.43 # Rules to gen a SliTaz package suitable for Tazpkg. 3.44 genpkg_rules() 3.45 { 3.46 - mkdir -p $fs/usr/lib 3.47 - mkdir -p $fs/usr/share/locale 3.48 - 3.49 - cp -a $install/usr/lib/*.so* $fs/usr/lib 3.50 - 3.51 - . $WOK/slitaz-i18n/stuff/locale-pack.conf 3.52 - for i in $LOCALE_PACK 3.53 - do 3.54 - [ -d $install/usr/share/locale/$i ] && 3.55 - cp -a $install/usr/share/locale/$i $fs/usr/share/locale 3.56 - done 3.57 + cook_copy_files *.so* 3.58 }