mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-15 11:20:03 +00:00
14 lines
303 B
Text
14 lines
303 B
Text
|
#!/usr/local/plan9/bin/rc
|
||
|
|
||
|
rm -rf dists pool
|
||
|
mkdir -p dists pool
|
||
|
./mkpkg all
|
||
|
d=dists/testing/main/binary-i386
|
||
|
mkdir -p $d
|
||
|
apt-ftparchive packages pool |tee $d/Packages |gzip >$d/Packages.gz
|
||
|
cp Release.testing $d/Release
|
||
|
{
|
||
|
cat Release.top
|
||
|
apt-ftparchive release dists/testing
|
||
|
} >dists/testing/Release
|