1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-09 09:57:48 +03:00
samba-mirror/packaging/bin/update-pkginfo

23 lines
503 B
Plaintext
Raw Normal View History

#!/bin/bash
VERSION=$1
RELEASE=$2
REVISION=$3
if [ $# -ne 3 ]; then
echo Usage: update-pkginfo VERSION RELEASE REVISION
exit 1
fi
# PREV=`echo ${REVISION} | sed 's/[^0-9]//g'`
# PREV="."`echo ${REVISION} | sed 's/[0-9]//g'`".${PREV}"
for f in `du -a | awk '{print $2}' | grep \.tmpl$`; do
f2=`echo $f | sed s/.tmpl//g`
echo $f2
sed -e s/PVERSION/$VERSION/g \
-e s/PRELEASE/$RELEASE/g \
-e s/PREVISION/${REVISION}/g \
-e s/PRPMREV/.${REVISION}/g < $f > $f2
done