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

15 lines
435 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-23 21:05:00 +00:00
install -Dm 644 kiss.1 "$1/usr/share/man/man1/kiss.1"
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-03 16:27:03 +00:00
for doc in faq guidestones install package-system package-manager style; do
2020-02-24 20:57:37 +00:00
install -Dm644 "docs/site/$doc.txt" \
"$1/usr/share/doc/kiss/$doc.txt"
done