You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
466 B
17 lines
466 B
#!/bin/sh
|
|
|
|
sudo rm -rf /opt/Librography
|
|
mkdir /opt
|
|
sudo pacman -S p7zip
|
|
sudo 7z x ../setup/data -o/opt/ -aoa
|
|
sudo chown root -R /opt/Librography
|
|
sudo chmod 777 -R /opt/Librography
|
|
cp DBType /opt/Librography/
|
|
#touch /opt/Librography/DBType
|
|
#echo "mysql" >> /opt/Librography/DBType
|
|
#sed -i 's/^[^0-9]*//' /opt/Librography/DBType
|
|
cp ../dist/Librography.jar /opt/Librography/
|
|
cp Librography.sh /opt/Librography/
|
|
sudo chmod a+rx /opt/Librography/Librography.jar
|
|
|
|
#pause
|
|
|