The SILC Project |
|
1 #!/bin/sh 2 3 distribution=$1 4 dist_version=$2 5 package=$3 6 distdir=$4 7 release=$5 8 9 if test -z $release; then 10 release="0.fc7" 11 fi 12 13 sed -e "s/SILC_VERSION/$dist_version/" -e "s/SILC_RELEASE/$release/" \ 14 silc-toolkit.spec.in > silc-toolkit.spec 15 16 ./configure 17 18 cd doc 19 make dist-hook 20 rm -rf toolkit 21 make toolkit-ref-html 22 cp ../lib/doc/*.gif toolkit 23 cd ..