Compare commits
No commits in common. "1bb05ad1fc9b5dc0d56e400e339b0890c9b7645b" and "a13d4dd824aafcbbffc4715c9fd8c322f4f771ce" have entirely different histories.
1bb05ad1fc
...
a13d4dd824
19
README.md
19
README.md
@ -1,24 +1,13 @@
|
|||||||
# The Music in Noise (Source Code)
|
# The Music in Noise (Source Code)
|
||||||
|
|
||||||
This is the source code for my personal website, [The Music in
|
This is the source code for my personal website, [The Music in
|
||||||
Noise](https://themusicinnoise.net/). The website is statically generated in
|
Noise](https://themusicinnoise.net/).
|
||||||
spite of being written in PHP and is compiled with a helpful little script I
|
|
||||||
wrote, `phpsg.sh`, which compiles all the code to a static website.
|
|
||||||
|
|
||||||
## Building
|
|
||||||
|
|
||||||
Dependencies:
|
|
||||||
|
|
||||||
- Bash
|
|
||||||
- PHP
|
|
||||||
- GNU Parallel
|
|
||||||
|
|
||||||
Build using the `phpsg.sh` script.
|
|
||||||
|
|
||||||
## Licensing
|
## Licensing
|
||||||
|
|
||||||
All documents generated by the website are licensed [CC-BY-ND 4.0
|
All documents generated by the website are licensed [CC-BY-ND 4.0
|
||||||
International](https://creativecommons.org/licenses/by-nd/4.0/deed.en). The
|
International](https://creativecommons.org/licenses/by-nd/4.0/deed.en). The
|
||||||
source code itself is All Rights Reserved unless otherwise specified (e.g. the
|
source code itself is All Rights Reserved unless otherwise specified (e.g. the
|
||||||
build script). The main reason I publish this is so people can see _how_ I make
|
build script). The main reason I publish this is so people can see __how__ I
|
||||||
my website and (if they are so inspired) copy the model, _not the content_.
|
make my website and (if they are so inspired) copy the model, __not the
|
||||||
|
content__.
|
||||||
|
35
phpsg.sh
35
phpsg.sh
@ -22,17 +22,14 @@
|
|||||||
# 3. This notice may not be removed or altered from any source
|
# 3. This notice may not be removed or altered from any source
|
||||||
# distribution.
|
# distribution.
|
||||||
|
|
||||||
set -euo pipefail
|
|
||||||
|
|
||||||
SOURCE_DIR="src"
|
SOURCE_DIR="src"
|
||||||
OUTPUT_DIR="output"
|
OUTPUT_DIR="output"
|
||||||
JOBS=1
|
|
||||||
|
|
||||||
function print_usage() {
|
function print_usage() {
|
||||||
echo "$0 [-o <output dir>] [-s <source dir>] [-j <num>]"
|
echo "$0 [-o <output dir>] [-s <source dir>]"
|
||||||
}
|
}
|
||||||
|
|
||||||
while getopts "o:s:j:h" opt
|
while getopts "o:s:h" opt
|
||||||
do
|
do
|
||||||
case "$opt" in
|
case "$opt" in
|
||||||
o)
|
o)
|
||||||
@ -41,15 +38,6 @@ do
|
|||||||
s)
|
s)
|
||||||
SOURCE_DIR="${OPTARG}"
|
SOURCE_DIR="${OPTARG}"
|
||||||
;;
|
;;
|
||||||
j)
|
|
||||||
JOBS="${OPTARG}"
|
|
||||||
if ! [[ $JOBS =~ ^[0-9]+$ ]]
|
|
||||||
then
|
|
||||||
>&2 echo "Jobs option '$JOBS' is not an integer."
|
|
||||||
print_usage
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
;;
|
|
||||||
h)
|
h)
|
||||||
print_usage
|
print_usage
|
||||||
exit
|
exit
|
||||||
@ -61,10 +49,6 @@ do
|
|||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
|
|
||||||
# Make these variables visible within parallel
|
|
||||||
export OUTPUT_DIR
|
|
||||||
export SOURCE_DIR
|
|
||||||
|
|
||||||
while IFS= read -r -d '' dir
|
while IFS= read -r -d '' dir
|
||||||
do
|
do
|
||||||
OUT_DIR="${OUTPUT_DIR}/${dir:${#SOURCE_DIR}}"
|
OUT_DIR="${OUTPUT_DIR}/${dir:${#SOURCE_DIR}}"
|
||||||
@ -74,14 +58,14 @@ do
|
|||||||
fi
|
fi
|
||||||
done < <(find "$SOURCE_DIR" -mindepth 1 -type d -print0)
|
done < <(find "$SOURCE_DIR" -mindepth 1 -type d -print0)
|
||||||
|
|
||||||
function process_file() {
|
while IFS= read -r -d '' file
|
||||||
file="$1"
|
do
|
||||||
if [[ $file = *.php ]]
|
if [[ $file = *.php ]]
|
||||||
then
|
then
|
||||||
DEST_FILE="${OUTPUT_DIR}/${file:${#SOURCE_DIR}:-4}"
|
DEST_FILE="${OUTPUT_DIR}/${file:${#SOURCE_DIR}:-4}"
|
||||||
if ! [ "$file" -nt "$DEST_FILE" ]
|
if ! [ "$file" -nt "$DEST_FILE" ]
|
||||||
then
|
then
|
||||||
return
|
continue
|
||||||
fi
|
fi
|
||||||
echo -n "Generating $DEST_FILE ... "
|
echo -n "Generating $DEST_FILE ... "
|
||||||
php "$file" > "$DEST_FILE"
|
php "$file" > "$DEST_FILE"
|
||||||
@ -90,15 +74,10 @@ function process_file() {
|
|||||||
DEST_FILE="${OUTPUT_DIR}/${file:${#SOURCE_DIR}}"
|
DEST_FILE="${OUTPUT_DIR}/${file:${#SOURCE_DIR}}"
|
||||||
if ! [ "$file" -nt "$DEST_FILE" ]
|
if ! [ "$file" -nt "$DEST_FILE" ]
|
||||||
then
|
then
|
||||||
return
|
continue
|
||||||
fi
|
fi
|
||||||
echo -n "Copying target $DEST_FILE ... "
|
echo -n "Copying target $DEST_FILE ... "
|
||||||
cp "$file" "$DEST_FILE"
|
cp "$file" "$DEST_FILE"
|
||||||
echo "done"
|
echo "done"
|
||||||
fi
|
fi
|
||||||
}
|
done < <(find "$SOURCE_DIR" -type f -not -name '*.cfg.php' -print0)
|
||||||
# Make function usable to parallel
|
|
||||||
export -f process_file
|
|
||||||
|
|
||||||
find "$SOURCE_DIR" -type f -not -name '*.cfg.php' |
|
|
||||||
parallel -j"${JOBS}" process_file
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user