📄 makedist.sh
字号:
#!/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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -