wok diff aspell/receipt @ rev 17437
slitaz-boot-scripts: install required slitaz-arm-configs in ARM case
author | Richard Dunbar <mojo@slitaz.org> |
---|---|
date | Sun Dec 07 19:35:57 2014 -0500 (2014-12-07) |
parents | f4c22f009037 |
children | 23b382a886ad |
line diff
1.1 --- a/aspell/receipt Sat Sep 07 18:25:02 2013 +0000 1.2 +++ b/aspell/receipt Sun Dec 07 19:35:57 2014 -0500 1.3 @@ -10,30 +10,25 @@ 1.4 WEB_SITE="http://aspell.net/" 1.5 WGET_URL="ftp://ftp.gnu.org/gnu/aspell/$TARBALL" 1.6 TAGS="spell check" 1.7 +HOST_ARCH="i486 arm" 1.8 1.9 -DEPENDS="ncurses gcc-lib-base" 1.10 +DEPENDS="ncursesw" 1.11 +BUILD_DEPENDS="ncursesw-dev" 1.12 1.13 # Rules to configure and make the package. 1.14 compile_rules() 1.15 { 1.16 - cd $src 1.17 - ./configure --prefix=/usr --infodir=/usr/share/info \ 1.18 - --mandir=/usr/share/man $CONFIGURE_ARGS && \ 1.19 - make && make DESTDIR=$DESTDIR install 1.20 + ./configure $CONFIGURE_ARGS && \ 1.21 + make && make install 1.22 } 1.23 1.24 # Rules to gen a SliTaz package suitable for Tazpkg. 1.25 genpkg_rules() 1.26 { 1.27 - mkdir -p $fs/usr/lib $fs/usr/share/locale 1.28 + mkdir -p $fs/usr/lib 1.29 cp -a $install/usr/bin $fs/usr 1.30 cp -a $install/usr/lib/*.so* $fs/usr/lib 1.31 cp -a $install/usr/lib/aspell* $fs/usr/lib 1.32 - 1.33 - for i in de es pt_BR; do 1.34 - cp -a $install/usr/share/locale/$i $fs/usr/share/locale 1.35 - done 1.36 - 1.37 # Remove unneeded files 1.38 rm -f $fs/usr/lib/aspell*/*.*a 1.39 }