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 apps/irssi/silc-client.spec.in > apps/irssi/silc-client.spec 15 16 cd doc 17 make dist-hook 18 cd .. 19