whatprovides/install.sh

8 lines
170 B
Bash
Raw Normal View History

2020-11-18 09:30:32 +00:00
#!/bin/bash
2020-11-18 10:49:49 +00:00
NAME="whatprovides"
mkdir -p $PREFIX/opt/${NAME}
cp -r db $PREFIX/opt/${NAME}
cp ${NAME} $PREFIX/bin
2020-11-18 09:30:32 +00:00
2020-11-18 10:49:49 +00:00
echo "Installation finished. execute $NAME -h for help"