wok-current diff gtkspell/receipt @ rev 25698

Fix ntfs-3g receipt
author Stanislas Leduc <shann@slitaz.org>
date Tue Apr 16 19:01:01 2024 +0000 (2 months ago)
parents 4c101652eb90
children
line diff
     1.1 --- a/gtkspell/receipt	Mon Oct 03 08:28:51 2022 +0000
     1.2 +++ b/gtkspell/receipt	Tue Apr 16 19:01:01 2024 +0000
     1.3 @@ -12,7 +12,8 @@
     1.4  WGET_URL="$WEB_SITE/download/$TARBALL"
     1.5  
     1.6  DEPENDS="cairo enchant gtk+"
     1.7 -BUILD_DEPENDS="enchant-dev expat-dev gtk+-dev pkg-config"
     1.8 +BUILD_DEPENDS="automake libtool enchant-dev expat-dev gtk-doc \
     1.9 +gtk+-dev libxslt-dev docbook-xsl python3-pygments pkg-config"
    1.10  
    1.11  HOST_ARCH="i486 arm"
    1.12  
    1.13 @@ -27,6 +28,13 @@
    1.14  # Rules to configure and make the package.
    1.15  compile_rules()
    1.16  {
    1.17 +	# Patch to be build with enchant-2
    1.18 +	# Thanks Pat :)
    1.19 +	patch -p1 < $stuff/gtkspell.enchant-2.diff
    1.20 +
    1.21 +	gtkdocize
    1.22 +	autoreconf -ivf
    1.23 +
    1.24  	./configure		\
    1.25  		$CONFIGURE_ARGS &&
    1.26  	make &&
    1.27 @@ -36,6 +44,6 @@
    1.28  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.29  genpkg_rules()
    1.30  {
    1.31 -	mkdir -p $fs/usr
    1.32 -	cp -a $install/usr/lib $fs/usr
    1.33 +	mkdir -p $fs/usr/lib
    1.34 +	cp -a $install/usr/lib/*.so* $fs/usr/lib
    1.35  }