wok diff aspell-nl/receipt @ rev 20641

Add SSL support to retawq (needed by man to browse linux.die.net)
author Lucas Levrel <llevrel@yahoo.fr>
date Fri Jan 11 09:19:11 2019 +0100 (2019-01-11)
parents beb52b40ec13
children 095836df71b7
line diff
     1.1 --- a/aspell-nl/receipt	Thu Nov 11 19:14:00 2010 +0000
     1.2 +++ b/aspell-nl/receipt	Fri Jan 11 09:19:11 2019 +0100
     1.3 @@ -5,24 +5,26 @@
     1.4  CATEGORY="system-tools"
     1.5  SHORT_DESC="Dutch aspell dictionary."
     1.6  MAINTAINER="paul@slitaz.org"
     1.7 -DEPENDS="aspell"
     1.8 -BUILD_DEPENDS="aspell aspell-dev"
     1.9 +LICENSE="GPL"
    1.10  TARBALL="$PACKAGE-$VERSION.tar.bz2"
    1.11  WEB_SITE="ftp://ftp.gnu.org/gnu/aspell/dict/0index.html"
    1.12  WGET_URL="ftp://ftp.gnu.org/gnu/aspell/dict/nl/$TARBALL"
    1.13  
    1.14 +DEPENDS="aspell"
    1.15 +BUILD_DEPENDS="aspell aspell-dev"
    1.16 +
    1.17  # Rules to configure and make the package.
    1.18  compile_rules()
    1.19  {
    1.20  	cd $src
    1.21  	./configure && \
    1.22 -	make && make DESTDIR=$PWD/_pkg install
    1.23 +	make && make DESTDIR=$DESTDIR 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
    1.30 -	cp -a $_pkg/usr/lib $fs/usr
    1.31 +	cp -a $install/usr/lib $fs/usr
    1.32  }
    1.33