-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sh
executable file
·38 lines (31 loc) · 879 Bytes
/
build.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#!/bin/bash
# This is a script to build and install Turtle
# Assume dependencies are installed!
set -e
VERSION=0.1.0
NAME=Turtle
# Build
[ -e build ] || mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=Release ..
make
# Copy files to their locations
echo "Copying turtle ..."
sudo cp turtle /usr/bin
echo "Copying icon ..."
sudo cp ../assets/logo.svg /usr/share/pixmaps/turtle.svg
# Create .desktop file
DESKTOP_FILE=turtle.desktop
echo "Creating desktop file ..."
echo "[Desktop Entry]" > $DESKTOP_FILE
{
echo "Version=${VERSION}"
echo "Type=Application"
echo "Name=${NAME}"
echo "Comment=A simple LOGO implementation"
echo "Exec=env GTK_THEME=Adwaita:light /usr/bin/turtle"
echo "Icon=/usr/share/pixmaps/turtle.svg"
} >> $DESKTOP_FILE
# Copy .desktop file
echo "Copying desktop file to /usr/share/applications ..."
sudo cp $DESKTOP_FILE /usr/share/applications