2023-05-25 15:44:45 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
PPA_ARCHIVE="ppa:ad5001/logarithmplotter"
|
|
|
|
|
|
|
|
# Build and sign the packages.
|
2024-09-17 18:14:50 +00:00
|
|
|
for i in output/*_amd64; do
|
2023-05-25 15:44:45 +00:00
|
|
|
cd "$i"
|
|
|
|
debuild -S -sa -k"mail@ad5001.eu"
|
|
|
|
cd ../../
|
|
|
|
done
|
|
|
|
|
|
|
|
# Upload every package
|
|
|
|
cd output
|
|
|
|
for i in *_source.changes; do
|
|
|
|
dput $PPA_ARCHIVE "./$i"
|
|
|
|
done
|