12 lines
318 B
Bash
Executable File
12 lines
318 B
Bash
Executable File
#!/bin/bash -x
|
|
|
|
# this is the systemd control file
|
|
mkdir -p files/lib/systemd/system/
|
|
cp gus.service files/lib/systemd/system/
|
|
|
|
mkdir -p files/usr/lib/gus/
|
|
cp Makefile.help files/usr/lib/gus/Makefile
|
|
|
|
mkdir -p files/usr/share/bash-completion/completions/
|
|
gus --bash > files/usr/share/bash-completion/completions/gus
|