makedist.sh

来自「PIXIL is a small footprint operating env」· Shell 代码 · 共 40 行

SH
40
字号
#!/bin/sh## makedist - make an hp-ux distribution.### Since the HP-UX software distribution stuff doesn't directly support# symbolic links, we have the option of making an installation script that# creates symbolic links, or include files that are symbolic links in the# distribution.  Since we want this distribution to be relocatable, the# script method probably won't work and we have to make dummy link files...#echo "Making links needed for distribution..."rm -rf linksmkdir linksfor file in `cd ../../FL; ls *.H`; do	ln -sf $file links/`basename $file .H`.hdoneln -sf FL links/Flln -sf libfltk.sl.1 links/libfltk.slcd ../../usr/sbin/swpackage -v -s packages/hpux/fltk.info \	-d packages/hpux/fltk-1.0.5-hpux.depot -x write_remote_files=true \	-x target_type=tape fltkecho "Compressing distribution..."cd packages/hpuxrm -rf linksrm -f fltk-1.0.5-hpux.depot.gzgzip -9 fltk-1.0.5-hpux.depot

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?