| 1 |
#!/bin/sh
|
| 2 |
|
| 3 |
# Create all conversion packages Debian carries
|
| 4 |
|
| 5 |
export MAINTAINER="Debian ia32-libs Team <pkg-ia32-libs-maintainers@lists.alioth.debian.org>"
|
| 6 |
export UPLOADERS="Bdale Garbee <bdale@gag.com>, Goswin von Brederlow <goswin-v-b@web.de>, Frederik Schüler <fs@debian.org>"
|
| 7 |
|
| 8 |
set -e
|
| 9 |
mkdir build
|
| 10 |
cd build
|
| 11 |
|
| 12 |
while read SRC PKGS; do
|
| 13 |
mkdir "$SRC"
|
| 14 |
cd "$SRC"
|
| 15 |
/usr/share/ia32-libs-tools/create $PKGS
|
| 16 |
if grep -q "Architecture: amd64" debian/control; then
|
| 17 |
yes | debuild -us -uc -sa
|
| 18 |
else
|
| 19 |
yes | debuild -us -uc -sa -aia64
|
| 20 |
fi
|
| 21 |
cd ..
|
| 22 |
done < /usr/share/ia32-libs-tools/packages.list
|