2024-04-19 21:19:14 +00:00
|
|
|
#!/bin/sh
|
2024-04-21 16:23:40 +00:00
|
|
|
# ▄████████▄ + ███ + ▄█████████ ███ +
|
|
|
|
# ███▀ ▀███ + + ███ ███▀ + ███ + +
|
|
|
|
# ███ + ███ ███ ███ █████████ ███ ███ ███ ███
|
2024-04-21 17:34:00 +00:00
|
|
|
# ███ +███ ███ ███ ███ ███▐██████ ███ ███ ███
|
2024-04-21 16:23:40 +00:00
|
|
|
# ███ + ███ ███+ ███ +███ ███ + ███ ███ + ███
|
|
|
|
# ███▄ ▄███ ███▄ ███ ███ + ███ + ███ ███▄ ███
|
|
|
|
# ▀████████▀ + ▀███████ ███▄ ███▄ ▀████ ▀███████
|
|
|
|
# + + + ███
|
|
|
|
# + ▀████████████████████████████████████████████████████▀
|
|
|
|
#
|
2024-04-19 21:19:14 +00:00
|
|
|
# usage: run this script from the project root, like this: build/install.sh [rootdir]
|
|
|
|
|
|
|
|
rootdir="${1:-}"
|
|
|
|
install -Dm755 "target/release/outfly" "$rootdir/usr/bin/outfly"
|
2024-04-19 22:31:00 +00:00
|
|
|
install -Dm644 "build/linux/outfly.png" "$rootdir/usr/share/pixmaps/outfly.png"
|
|
|
|
install -Dm644 "build/linux/outfly.desktop" "$rootdir/usr/share/applications/outfly.desktop"
|