wok-6.x annotate zsh/receipt @ rev 18233
linld: add tobzimage (again)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Thu Jul 23 12:23:11 2015 +0200 (2015-07-23) |
parents | 191b99ca9dc2 |
children | 9e01bc6321ea |
rev | line source |
---|---|
pascal@1531 | 1 # SliTaz package receipt. |
pascal@1531 | 2 |
pascal@1531 | 3 PACKAGE="zsh" |
pascal@18104 | 4 VERSION="5.0.7" |
pascal@1531 | 5 CATEGORY="system-tools" |
pascal@1531 | 6 SHORT_DESC="Zsh shell incorporates many features of bash, ksh, and tcsh" |
pascal@1531 | 7 MAINTAINER="sandys@gmail.com" |
pascal@15361 | 8 LICENSE="other" |
pascal@1531 | 9 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
pascal@1531 | 10 WEB_SITE="http://zsh.sourceforge.net/" |
pascal@1531 | 11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" |
jozee@4978 | 12 TAGS="shell" |
pascal@1531 | 13 |
slaxemulator@11123 | 14 DEPENDS="ncurses zlib ncursesw" |
slaxemulator@11123 | 15 BUILD_DEPENDS="ncurses-dev zlib-dev" |
slaxemulator@11123 | 16 |
pascal@1531 | 17 # Rules to configure and make the package. |
pascal@1531 | 18 compile_rules() |
pascal@1531 | 19 { |
slaxemulator@10039 | 20 ./configure --bindir=/bin \ |
slaxemulator@10039 | 21 --disable-dynamic --enable-multibyte \ |
pascal@1531 | 22 --enable-fndir=/usr/share/zsh/functions \ |
slaxemulator@10039 | 23 --enable-scriptdir=/usr/share/zsh/scripts \ |
pascal@11771 | 24 $CONFIGURE_ARGS && |
pascal@1531 | 25 make && |
slaxemulator@9723 | 26 make install |
pascal@1531 | 27 } |
pascal@1531 | 28 |
pascal@1531 | 29 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@1531 | 30 genpkg_rules() |
pascal@1531 | 31 { |
pascal@15361 | 32 cp -a $install/bin $fs |
pascal@1531 | 33 |
pascal@1531 | 34 # Config files. |
pascal@1531 | 35 # |
pascal@1531 | 36 mkdir $fs/etc |
slaxemulator@9723 | 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@15361 | 41 cp -r $install/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 # Post install commands for Tazpkg. |
pascal@1531 | 47 # Check /bin/sh stat. |
pascal@1531 | 48 # |
pascal@1531 | 49 post_install() |
pascal@1531 | 50 { |
pascal@1531 | 51 local root |
pascal@1531 | 52 root=$1 |
pascal@1531 | 53 echo "Processing post-install commands..." |
pascal@1531 | 54 sh=`readlink $root/bin/sh` |
pascal@1531 | 55 if [ ! "$sh" = "/bin/zsh" ]; then |
pascal@1531 | 56 echo "" |
pascal@1531 | 57 echo "**** Actual SH link : $sh" |
pascal@1531 | 58 echo "" |
pascal@6073 | 59 echo -n "Do you want Zsh for /bin/sh (y/N) ? : " |
pascal@6073 | 60 read -t 30 answer < /dev/tty |
pascal@6073 | 61 if [ "$answer" == "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 } |
mojo@11667 | 72 |
mojo@11667 | 73 # Restore a valid sh link if needed. |
mojo@11667 | 74 pre_remove() |
mojo@11667 | 75 { |
mojo@11667 | 76 local root |
mojo@11667 | 77 root=$1 |
mojo@11667 | 78 sh=`readlink $root/bin/sh` |
mojo@11667 | 79 if [ ! "$sh" = "busybox" ]; then |
mojo@11667 | 80 rm $root/bin/sh && |
mojo@11667 | 81 ln -s /bin/busybox $root/bin/sh |
mojo@11667 | 82 fi |
mojo@11667 | 83 } |