forked from pool/orafce
OBS-URL: https://build.opensuse.org/package/show/server:database:postgresql/orafce?expand=0&rev=7
12 lines
201 B
Bash
12 lines
201 B
Bash
#!/bin/sh
|
|
#
|
|
VERS="91 92 93 94"
|
|
#
|
|
spec=orafce.spec.in
|
|
|
|
for ii in $VERS
|
|
do
|
|
sed "s/pgversion ##/pgversion $ii/" $spec > postgresql${ii}-orafce.spec
|
|
cp orafce.changes postgresql${ii}-orafce.changes
|
|
done
|