wok rev 4894

nano: --enable-utf8
author Christophe Lincoln <pankso@slitaz.org>
date Sun Feb 07 18:41:46 2010 +0100 (2010-02-07)
parents 87cdd99cd1b0
children 7ab0fdcc255d
files nano/receipt
line diff
     1.1 --- a/nano/receipt	Sat Feb 06 19:58:31 2010 +0000
     1.2 +++ b/nano/receipt	Sun Feb 07 18:41:46 2010 +0100
     1.3 @@ -5,8 +5,8 @@
     1.4  CATEGORY="utilities"
     1.5  SHORT_DESC="GNU Nano Text Editor."
     1.6  MAINTAINER="pankso@slitaz.org"
     1.7 -DEPENDS="ncurses"
     1.8 -BUILD_DEPENDS="ncurses-dev"
     1.9 +DEPENDS="ncursesw"
    1.10 +BUILD_DEPENDS="ncursesw-dev"
    1.11  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.12  WEB_SITE="http://www.nano-editor.org/"
    1.13  WGET_URL="http://www.nano-editor.org/dist/v2.0/$TARBALL"
    1.14 @@ -15,9 +15,15 @@
    1.15  compile_rules()
    1.16  {
    1.17      cd $src
    1.18 -    ./configure --enable-all --enable-extra --prefix=/usr \
    1.19 -    --infodir=/usr/share/info --mandir=/usr/share/man \
    1.20 -    --sysconfdir=/etc $CONFIGURE_ARGS &&
    1.21 +    ./configure \
    1.22 +		--prefix=/usr \
    1.23 +		--infodir=/usr/share/info \
    1.24 +		--mandir=/usr/share/man \
    1.25 +		--sysconfdir=/etc \
    1.26 +		--enable-all \
    1.27 +		--enable-extra \
    1.28 +		--enable-utf8 \
    1.29 +		$CONFIGURE_ARGS &&
    1.30      make &&
    1.31      make DESTDIR=$PWD/_pkg install
    1.32  }