blob: cd7381d8d678e50281f0faa15120f6b790fcdf02 (
plain)
1
2
3
4
5
6
7
8
9
10
11
  | 
#!/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
  |