wok-next diff aspell/receipt @ rev 20068

Up libcanberra (gtk2 and gtk3 support), vala (0.36.4), dconf (0.26.0), gucharmap3 (10.0.0), pycairo (1.15.3), pygobject3 (3.26.0), libgtop. Add dconf-editor, gtksourceview3.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue Oct 24 17:49:57 2017 +0300 (2017-10-24)
parents 4048d48a47c1
children ab7c63b80420
line diff
     1.1 --- a/aspell/receipt	Fri Apr 21 14:48:05 2017 +0300
     1.2 +++ b/aspell/receipt	Tue Oct 24 17:49:57 2017 +0300
     1.3 @@ -1,9 +1,9 @@
     1.4 -# SliTaz package receipt.
     1.5 +# SliTaz package receipt v2.
     1.6  
     1.7  PACKAGE="aspell"
     1.8  VERSION="0.60.6.1"
     1.9  CATEGORY="system-tools"
    1.10 -SHORT_DESC="GNU spell checker."
    1.11 +SHORT_DESC="GNU spell checker"
    1.12  MAINTAINER="paul@slitaz.org"
    1.13  LICENSE="LGPL2"
    1.14  WEB_SITE="http://aspell.net/"
    1.15 @@ -13,28 +13,27 @@
    1.16  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.17  WGET_URL="$GNU_MIRROR/aspell/$TARBALL"
    1.18  
    1.19 -DEPENDS="ncurses"
    1.20  BUILD_DEPENDS="perl gettext ncurses-dev"
    1.21 +SPLIT="aspell-dev"
    1.22  
    1.23  # Rules to configure and make the package.
    1.24  compile_rules()
    1.25  {
    1.26  	./configure $CONFIGURE_ARGS && make && make install
    1.27  
    1.28 -	install -v -m755 -d $install/usr/share/doc/aspell-$VERSION/aspell.html &&
    1.29 -	install -v -m755 -d $install/usr/share/doc/aspell-$VERSION/aspell-dev.html &&
    1.30 -	install -v -m644 manual/aspell.html/* \
    1.31 -		$install/usr/share/doc/aspell-$VERSION/aspell.html &&
    1.32 -	install -v -m644 manual/aspell-dev.html/* \
    1.33 -		$install/usr/share/doc/aspell-$VERSION/aspell-dev.html
    1.34 +	ln -svfn aspell-0.60 $install/usr/lib/aspell
    1.35 +	docdir="$install/usr/share/doc/aspell-$VERSION"
    1.36 +	install -v -m755 -d $docdir/aspell.html &&
    1.37 +	install -v -m755 -d $docdir/aspell-dev.html &&
    1.38 +	install -v -m644 manual/aspell.html/*		$docdir/aspell.html &&
    1.39 +	install -v -m644 manual/aspell-dev.html/*	$docdir/aspell-dev.html
    1.40  }
    1.41  
    1.42  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.43  genpkg_rules()
    1.44  {
    1.45 -	cook_copy_folders bin
    1.46 -	find $fs -name '*-config' -delete
    1.47 -	cook_copy_files *.so* *.amf *filter.info *.cmap *.cset *.kbd *.amf spell ispell
    1.48 -
    1.49 -	ln -svfn aspell-0.60 $fs/usr/lib/aspell
    1.50 +	case $PACKAGE in
    1.51 +		aspell) 	copy @std; DEPENDS="ncurses" ;;
    1.52 +		aspell-dev) copy @dev ;;
    1.53 +	esac
    1.54  }