#!/bin/bash ## # NAME # minstscript # # SYNOPSIS # minstscript package version release [variant] # # VERSION # 5.0.0 # 20060216 ## # Variables . $DEVDIR/etc/os.dat . $DEVDIR/etc/def.dat . $DEVDIR/$1/$1.port # Compile install script if needed if [ -e $DEVDIR/$1/$1$4.inst.in ]; then $DEVDIR/$1/$1$4.inst.in $1 $2 $3 $4 > $DEVDIR/$1/$1$4.inst elif [ -e $DEVDIR/$1/$1.inst.in ]; then $DEVDIR/$1/$1.inst.in $1 $2 $3 $4 > $DEVDIR/$1/$1.inst fi