blob: 8daef8cb3bba11f1e93efa97bf381ae51f573021 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/bin/bash
# builds the html files required for the xilinux website
generate_index () {
envsubst < templ/index.html
}
generate_package_list() {
local repo_dir=$1
for info_file in $repo_dir/*.xipkg.info; do
done;
}
"$XIB_CHROOT"/
|