16 lines
255 B
Bash
16 lines
255 B
Bash
|
#!/usr/bin/sh
|
||
|
|
||
|
mkdir -p tonitch
|
||
|
export PKGDEST=$(pwd)/tonitch
|
||
|
|
||
|
packagelist=$(find . -maxdepth 1 -type d -printf '%P\n' | sed '/tonitch/d' | sed '/\./d')
|
||
|
|
||
|
for d in $packagelist
|
||
|
do
|
||
|
cd $d
|
||
|
makepkg
|
||
|
done
|
||
|
|
||
|
cd $PKGDEST
|
||
|
repo-add tonitch.db.tar.gz *.pkg.tar.zst
|