Parent: [82ce94] (diff)

Child: [10b486] (diff)

Download this file

buildppa.sh    29 lines (20 with data), 745 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/bin/sh
RCLVERSION=1.13.04
debdir=debianrclqt3
rm -rf recoll-${RCLVERSION}/debian
cp -rp $debdir recoll-${RCLVERSION}/debian
for series in dapper hardy intrepid jaunty ;do
sed -e s/SERIES/$series/g < ${debdir}/changelog > \
recoll-${RCLVERSION}/debian/changelog ;
(cd recoll-${RCLVERSION};debuild -S -sa)
dput recoll-ppa recoll_${RCLVERSION}-0~ppa1~${series}1_source.changes
done
debdir=debianrclqt4
rm -rf recoll-${RCLVERSION}/debian
cp -rp $debdir recoll-${RCLVERSION}/debian
for series in karmic ; do
sed -e s/SERIES/$series/g < ${debdir}/changelog > \
recoll-${RCLVERSION}/debian/changelog ;
(cd recoll-${RCLVERSION};debuild -S -sa)
dput recoll-ppa recoll_${RCLVERSION}-0~ppa1~${series}1_source.changes
done