wok-6.x view ncurses-common/receipt @ rev 7674
Fixed linux. Need to make folder PWD/_pkg before adding bzImage to it. Also i'm force copying kernel config file now so we have the right config. It is copyed twice so its needed and doesn't hunt anything i think.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Thu Dec 16 17:16:06 2010 +0000 (2010-12-16) |
parents | |
children | 7a07e54288a4 |
line source
1 # SliTaz package receipt.
3 PACKAGE="ncurses-common"
4 VERSION="5.7"
5 CATEGORY="base-system"
6 SHORT_DESC="Common files for the ncurses and ncursesw library."
7 MAINTAINER="pankso@slitaz.org"
8 WANTED="ncurses"
9 WEB_SITE="http://invisible-island.net/ncurses/"
11 # Rules to gen a SliTaz package suitable for Tazpkg.
12 genpkg_rules()
13 {
14 # Terminfo.
15 mkdir -p $fs/usr/share/terminfo
16 for dir in a l r v x
17 do
18 mkdir $fs/usr/share/terminfo/$dir
19 done
20 cp $_pkg/usr/share/terminfo/a/ansi \
21 $fs/usr/share/terminfo/a
22 cp $_pkg/usr/share/terminfo/l/linux \
23 $fs/usr/share/terminfo/l
24 cp $_pkg/usr/share/terminfo/r/rxvt \
25 $fs/usr/share/terminfo/r
26 cp $_pkg/usr/share/terminfo/x/xterm \
27 $fs/usr/share/terminfo/x
28 cp $_pkg/usr/share/terminfo/x/xterm-color \
29 $fs/usr/share/terminfo/x
30 cp $_pkg/usr/share/terminfo/x/xterm-new \
31 $fs/usr/share/terminfo/x
32 cp $_pkg/usr/share/terminfo/x/xterm-vt220 \
33 $fs/usr/share/terminfo/x
34 cp $_pkg/usr/share/terminfo/v/vt100 \
35 $fs/usr/share/terminfo/v
36 cp $_pkg/usr/share/terminfo/v/vt102* \
37 $fs/usr/share/terminfo/v
39 # Tabset.
40 cp -a $_pkg/usr/share/tabset $fs/usr/share
41 }