wok view vim-tiny/receipt @ rev 18545

Add: get-vivaldi, kazehakase. Up: firefox-official(42.0). Misc: change various icons.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sat Nov 07 03:08:19 2015 +0200 (2015-11-07)
parents 2a21689b0af7
children 3494cfd4c595
line source
1 # SliTaz package receipt.
3 PACKAGE="vim-tiny"
4 VERSION="7.3"
5 CATEGORY="development"
6 SHORT_DESC="Advanced text editor with no GUI"
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="other"
9 SOURCE="vim"
10 TARBALL="$SOURCE-$VERSION.tar.bz2"
11 WEB_SITE="http://www.vim.org/"
12 WGET_URL="ftp://ftp.vim.org/pub/vim/unix/$TARBALL"
13 CONFIG_FILES="/etc/vim/vimrc"
14 TAGS="text-editor"
16 DEPENDS="ncurses"
17 BUILD_DEPENDS="ncurses-dev"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 export LDFLAGS="$LDFLAGS -ltinfo"
24 # define the place for the global vimrc file (set to /etc/vim/vimrc)
25 # (patch from Arch Linux PKGBUILD)
26 sed -i 's|^.*\(#define SYS_VIMRC_FILE\).*$|\1 "/etc/vim/vimrc"|' $src/src/feature.h
28 ./configure --prefix=/usr \
29 --cache-file=$PWD/config.cache \
30 --infodir=/usr/share/info \
31 --with-features=tiny \
32 --with-x=no \
33 --disable-gui \
34 --enable-multibyte \
35 --with-vim-name=$PACKAGE \
36 --disable-acl \
37 --disable-motif-check \
38 --disable-athena-check \
39 --mandir=/usr/share/man $CONFIGURE_ARGS &&
41 make VIMRCLOC=/etc/vim VIMRUNTIMEDIR=/usr/share/vim/vim73 MAKE="make -e" &&
42 make DESTDIR=$DESTDIR install
43 mkdir -p $DESTDIR/etc/vim
44 cp -a $src/runtime/vimrc_example.vim $DESTDIR/etc/vim/vimrc
45 }
47 # Rules to gen a SliTaz package suitable for Tazpkg.
48 genpkg_rules()
49 {
50 mkdir -p $fs/usr/share $fs/etc
52 cp -a $install/usr/bin $fs/usr
53 cp -a $install/usr/share/vim $fs/usr/share
54 cp -a $install/etc/vim $fs/etc
55 rm -f $fs/usr/bin/*tutor
56 }
58 post_install()
59 {
60 local root
61 root=$1
62 echo "Processing post-install commands..."
63 cmd=`readlink $root/bin/vi`
64 if [ ! "$cmd" = "/usr/bin/vim" ]; then
65 echo ""
66 echo "**** Actual VI link : $cmd"
67 echo ""
68 echo -n "Do you want vim for /bin/vi (y/N) ? : "; read -t 30 anser
69 if [ "$anser" == "y" ]; then
70 echo ""
71 echo -n "Removing vi link to make a new one pointing on /usr/bin/vim..."
72 rm $root/bin/vi && ln -sf $root/usr/bin/vim-tiny $root/bin/vi
73 status
74 else
75 echo ""
76 echo "Leaving /bin/vi to : $cmd"
77 fi
78 fi
79 }
81 post_remove()
82 {
83 # restore previous symlink
84 echo "Processing post-remove commands..."
85 ln -sf /bin/busybox $1/bin/vi
86 }