blob: 7d364e7fd4695e4568eb7dab3a2bb039de37a33c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
#!/bin/sh
# a small script to help me compile all packages and push them to my server
set -e # exit asap
# cleanup previous build
if [ "$1" = "clean" ]; then
rm -rf ./dest ./void-packages
exit 0
fi
mkdir -p ./dest
[ ! -d void-packages ] && git clone --depth 1 https://github.com/void-linux/void-packages.git
./void-packages/xbps-src binary-bootstrap
for f in srcpkgs/*; do
cp ./"$f" ./void-packages/"$f" -ruf
./void-packages/xbps-src pkg "$f"
cp ./void-packages/hostdir/binpkgs/*.xbps ./dest/ -u
done
# copy repodata after building all packages
cp ./void-packages/hostdir/binpkgs/x86_64-repodata ./dest/
# tell the builder to sign their packages
printf "\n\n\033[1;31mRun the following commands:\033[m\n"
printf 'xbps-rindex -s ./dest --privkey \033[31m/path/to/key\033[m --signedby \033[31m"Name <Email>"\033[m\n'
printf 'xbps-rindex -S ./dest/* --privkey \033[31m/path/to/key\033[m\n'
|