wok view nano/receipt @ rev 4894

nano: --enable-utf8
author Christophe Lincoln <pankso@slitaz.org>
date Sun Feb 07 18:41:46 2010 +0100 (2010-02-07)
parents 3e8ffa6ff731
children bee79018e13a
line source
1 # SliTaz package receipt.
3 PACKAGE="nano"
4 VERSION="2.0.9"
5 CATEGORY="utilities"
6 SHORT_DESC="GNU Nano Text Editor."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="ncursesw"
9 BUILD_DEPENDS="ncursesw-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://www.nano-editor.org/"
12 WGET_URL="http://www.nano-editor.org/dist/v2.0/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure \
19 --prefix=/usr \
20 --infodir=/usr/share/info \
21 --mandir=/usr/share/man \
22 --sysconfdir=/etc \
23 --enable-all \
24 --enable-extra \
25 --enable-utf8 \
26 $CONFIGURE_ARGS &&
27 make &&
28 make DESTDIR=$PWD/_pkg install
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 mkdir -p $fs/usr/share $fs/etc
35 cp -a $_pkg/usr/bin $fs/usr
36 cp -a $_pkg/usr/share/nano $fs/usr/share
37 # Config file.
38 cp stuff/nanorc $fs/etc
39 }