wok annotate zsh/receipt @ rev 3935

google-chrome: fix run chrome
author Liu Peng <rocky@slitaz.org>
date Fri Aug 21 08:46:03 2009 +0000 (2009-08-21)
parents
children b303dfac3b48
rev   line source
pascal@1531 1 # SliTaz package receipt.
pascal@1531 2
pascal@1531 3 PACKAGE="zsh"
pascal@1531 4 VERSION="4.3.6"
pascal@1531 5 CATEGORY="system-tools"
pascal@1531 6 DEPENDS="ncurses zlib"
pascal@1531 7 BUILD_DEPENDS="ncurses-dev zlib-dev"
pascal@1531 8 SHORT_DESC="Zsh shell incorporates many features of bash, ksh, and tcsh"
pascal@1531 9 MAINTAINER="sandys@gmail.com"
pascal@1531 10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
pascal@1531 11 WEB_SITE="http://zsh.sourceforge.net/"
pascal@1531 12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
pascal@1531 13
pascal@1531 14 # Rules to configure and make the package.
pascal@1531 15 compile_rules()
pascal@1531 16 {
pascal@1531 17 cd $src
pascal@1531 18 ./configure --prefix=/usr --bindir=/bin \
pascal@1531 19 --disable-dynamic --enable-multibyte \
pascal@1531 20 --infodir=/usr/share/info --mandir=/usr/share/man \
pascal@1531 21 --enable-fndir=/usr/share/zsh/functions \
pascal@1531 22 --enable-scriptdir=/usr/share/zsh/scripts \
pascal@1531 23 $CONFIGURE_ARGS &&
pascal@1531 24 make &&
pascal@1531 25 make DESTDIR=$PWD/_pkg install
pascal@1531 26 }
pascal@1531 27
pascal@1531 28 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@1531 29 genpkg_rules()
pascal@1531 30 {
pascal@1531 31 cp -a $_pkg/bin $fs
pascal@1531 32 strip -s $fs/bin/zsh
pascal@1531 33
pascal@1531 34 # Config files.
pascal@1531 35 #
pascal@1531 36 mkdir $fs/etc
pascal@1531 37 cp stuff/example.zshrc $fs/etc/zshrc
pascal@1531 38
pascal@1531 39 #no way around this... gen_package will not automatically copy these
pascal@1531 40 mkdir -p $fs/usr/share/zsh
pascal@1531 41 cp -r $_pkg/usr/share/zsh/functions $fs/usr/share/zsh
pascal@1531 42
pascal@1531 43 mkdir -p $fs/usr/share/zsh/scripts
pascal@1531 44
pascal@1531 45 }
pascal@1531 46
pascal@1531 47 # Post install commands for Tazpkg.
pascal@1531 48 # Check /bin/sh stat.
pascal@1531 49 #
pascal@1531 50 post_install()
pascal@1531 51 {
pascal@1531 52 local root
pascal@1531 53 root=$1
pascal@1531 54 echo "Processing post-install commands..."
pascal@1531 55 sh=`readlink $root/bin/sh`
pascal@1531 56 if [ ! "$sh" = "/bin/zsh" ]; then
pascal@1531 57 echo ""
pascal@1531 58 echo "**** Actual SH link : $sh"
pascal@1531 59 echo ""
pascal@1531 60 echo -n "Do you want Zsh for /bin/sh (y/N) ? : "; read anser
pascal@1531 61 if [ "$anser" == "y" ]; then
pascal@1531 62 echo ""
pascal@1531 63 echo -n "Removin sh link to make a new one pointing on /bin/zsh..."
pascal@1531 64 rm $root/bin/sh && ln -s /bin/zsh $root/bin/sh
pascal@1531 65 status
pascal@1531 66 else
pascal@1531 67 echo ""
pascal@1531 68 echo "Leaving /bin/sh to : $sh"
pascal@1531 69 fi
pascal@1531 70 fi
pascal@1531 71 }