2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-07-07 16:32:28 +00:00
repo/core/kiss/build

22 lines
568 B
Plaintext
Raw Normal View History

2019-06-17 17:12:34 +00:00
#!/bin/sh -e
2019-10-07 13:37:01 +00:00
install -D kiss "$1/usr/bin/kiss"
install -D kiss_path.sh "$1/etc/profile.d/kiss_path.sh"
2020-02-14 16:13:39 +00:00
2020-02-24 20:57:37 +00:00
# Install kiss utilities.
2020-02-24 19:34:11 +00:00
cp contrib/* "$1/usr/bin/"
2020-02-24 20:57:37 +00:00
# Install distribution documentation.
2020-06-12 21:24:37 +00:00
for doc in docs/site/*.txt; do
install -Dm644 "$doc" "$1/usr/share/doc/kiss/${doc##*/}"
2020-02-24 20:57:37 +00:00
done
2020-06-06 06:04:02 +00:00
2020-06-12 21:24:37 +00:00
# Install the Wiki.
2020-06-06 06:04:02 +00:00
cp -r wiki "$1/usr/share/doc/kiss/wiki"
2020-06-12 21:24:37 +00:00
# Remove unnecessary pages.
rm -f "$1/usr/share/doc/kiss/wiki/README.txt" \
"$1/usr/share/doc/kiss/news.txt" \
"$1/usr/share/doc/kiss/blog.txt" \
"$1/usr/share/doc/kiss/screenshots.txt"