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
28
29
30
31
32
33
34
|
#!/bin/sh
set -e
DIST=$(lsb_release -c -s)
# cleanup
echo "Cleaning up"
rm -f *~ *.bak *.pyc *.moved '#'* *.rej *.orig
#sudo rm -rf backports/ profile/ result/ tarball/ *.deb
# update po
(cd ../po; make update-po)
# update demotions
#(cd ../utils/ ; ./demotions.py )
# make the kde-gui
for file in *.ui; do
kdepyuic $file
done
# copy the mo files
cp -r ../po/mo .
# make symlink
if [ ! -h $DIST ]; then
ln -s dist-upgrade.py $DIST
fi
# create the tarball, copy links in place
tar -c -h -z -v --exclude=$DIST.tar.gz --exclude=$0 -X build-exclude.txt -f $DIST.tar.gz .
|