wok-next diff gtkspell3/receipt @ rev 19216
Add coreutils-multicall (GNU Coreutils all-in-one, like Busybox; 4 times lighter than ordinary Coreutils)
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Wed Jun 15 17:27:10 2016 +0300 (2016-06-15) |
parents | |
children | 595097cb4e40 |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/gtkspell3/receipt Wed Jun 15 17:27:10 2016 +0300 1.3 @@ -0,0 +1,34 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="gtkspell3" 1.7 +VERSION="3.0.8" 1.8 +CATEGORY="text" 1.9 +SHORT_DESC="On-the-fly spell checking for GtkTextView widgets" 1.10 +MAINTAINER="al.bobylev@gmail.com" 1.11 +LICENSE="GPL2" 1.12 +TARBALL="$PACKAGE-$VERSION.tar.gz" 1.13 +WEB_SITE="http://gtkspell.sourceforge.net/" 1.14 +WGET_URL="$SF_MIRROR/gtkspell/$TARBALL" 1.15 +HOST_ARCH="i486 arm" 1.16 + 1.17 +DEPENDS="enchant gtk+3" 1.18 +BUILD_DEPENDS="gobject-introspection vala gtk+3-dev enchant-dev gtk-doc" 1.19 + 1.20 +# Rules to configure and make the package. 1.21 +compile_rules() 1.22 +{ 1.23 + ./configure $CONFIGURE_ARGS && make && make install 1.24 +} 1.25 + 1.26 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.27 +genpkg_rules() 1.28 +{ 1.29 + mkdir -p $fs/usr/lib $fs/usr/share/locale 1.30 + cp -a $install/usr/lib/*.so* $fs/usr/lib 1.31 + 1.32 + . $WOK/slitaz-i18n/stuff/locale-pack.conf 1.33 + for i in $LOCALE_PACK; do 1.34 + [ -d $install/usr/share/locale/$i ] && 1.35 + cp -a $install/usr/share/locale/$i $fs/usr/share/locale 1.36 + done 1.37 +}