mirror of
https://gitee.com/amber-ce/amber-ce-bookworm.git
synced 2025-10-06 01:42:22 +08:00
7 lines
173 B
Bash
Executable File
7 lines
173 B
Bash
Executable File
#!/bin/bash
|
|
pushd $(dirname $(realpath $0))
|
|
sudo apt install debootstrap systemd-container sudo file -y
|
|
cp -vr src pkg
|
|
bash build-pkg.sh pkg
|
|
dpkg-deb -Z gzip -b pkg/ ./
|
|
popd |