wok-4.x view gvim/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 | 13609acc2c78 |
children | be13f25e790b |
line source
1 # SliTaz package receipt.
3 PACKAGE="gvim"
4 VERSION="7.2"
5 CATEGORY="development"
6 SHORT_DESC="Advanced text editor"
7 MAINTAINER="erjo@slitaz.org"
8 DEPENDS="vim"
9 WANTED="vim"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WEB_SITE="http://www.vim.org/"
13 # Rules to gen a SliTaz package suitable for Tazpkg.
14 genpkg_rules()
15 {
16 _pkg="$WOK/$WANTED/vim72/_pkg"
17 mkdir -p $fs/usr/bin \
18 -p $fs/usr/share/pixmaps \
19 -p $fs/usr/share/applications
21 for i in eview evim gview gvim gvimdiff rgvim rgview
22 do
23 cp -a $_pkg/usr/bin/$i $fs/usr/bin
24 done
26 cp -a $WOK/$WANTED/vim72/runtime/vim16x16.png $fs/usr/share/pixmaps/gvim.png
28 cp -a stuff/gvim.desktop $fs/usr/share/applications
29 }