New icons and update rpm/deb/macOS scripts
Before Width: | Height: | Size: 62 KiB After Width: | Height: | Size: 89 KiB |
Before Width: | Height: | Size: 5.7 KiB After Width: | Height: | Size: 8.2 KiB |
BIN
etc/icons/16.png
Before Width: | Height: | Size: 750 B After Width: | Height: | Size: 785 B |
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 17 KiB |
BIN
etc/icons/32.png
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 29 KiB After Width: | Height: | Size: 39 KiB |
BIN
etc/icons/64.png
Before Width: | Height: | Size: 2.8 KiB After Width: | Height: | Size: 3.8 KiB |
|
@ -1,12 +1,12 @@
|
||||||
[Desktop Entry]
|
[Desktop Entry]
|
||||||
Version=1.0
|
Version=1.0
|
||||||
Type=Application
|
Type=Application
|
||||||
Name=Project: Doodle
|
Name=Sketchy Maze
|
||||||
GenericName=Project Doodle
|
GenericName=Maze Game
|
||||||
X-GNOME-FullName=Project: Doodle - A drawing-based maze game
|
X-GNOME-FullName=Sketchy Maze - A drawing-based maze game
|
||||||
Comment=A drawing-based maze game.
|
Comment=A drawing-based maze game.
|
||||||
Exec=/opt/project-doodle/doodle
|
Exec=/opt/sketchy-maze/doodle
|
||||||
Path=/opt/project-doodle
|
Path=/opt/sketchy-maze
|
||||||
Icon=project-doodle
|
Icon=project-doodle
|
||||||
StartupNotify=true
|
StartupNotify=true
|
||||||
Keywords=game;maze;
|
Keywords=game;maze;
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
# fpm-bundle: create bundles for the app.
|
# fpm-bundle: create bundles for the app.
|
||||||
|
|
||||||
VERSION=`egrep -e 'Version\s+=' ../../pkg/branding/branding.go | head -n 1 | cut -d '"' -f 2`
|
VERSION=`egrep -e 'Version\s+=' ../../pkg/branding/branding.go | head -n 1 | cut -d '"' -f 2`
|
||||||
INSTALL_ROOT="/opt/project-doodle"
|
INSTALL_ROOT="/opt/sketchy-maze"
|
||||||
LAUNCHER_FILE="../../etc/linux/net.kirsle.ProjectDoodle.desktop"
|
LAUNCHER_FILE="../../etc/linux/net.kirsle.ProjectDoodle.desktop"
|
||||||
LAUNCHER_ROOT="/usr/share/applications" # Where the .desktop file goes.
|
LAUNCHER_ROOT="/usr/share/applications" # Where the .desktop file goes.
|
||||||
ICON_ROOT="/usr/share/icons/hicolor/"
|
ICON_ROOT="/usr/share/icons/hicolor/"
|
||||||
|
@ -47,17 +47,17 @@ echo =====================
|
||||||
# RPM Package
|
# RPM Package
|
||||||
fpm -C ./root -s dir -t rpm \
|
fpm -C ./root -s dir -t rpm \
|
||||||
-d SDL2 -d SDL2_ttf -a x86_64 \
|
-d SDL2 -d SDL2_ttf -a x86_64 \
|
||||||
-n project-doodle -v ${VERSION} \
|
-n sketchy-maze -v ${VERSION} \
|
||||||
--license="Copyright" \
|
--license="Copyright" \
|
||||||
--maintainer=noah@kirsle.net \
|
--maintainer=noah@kirsle.net \
|
||||||
--description="Project: Doodle - A drawing-based maze game." \
|
--description="Sketchy Maze - A drawing-based maze game." \
|
||||||
--url="https://www.kirsle.net/doodle"
|
--url="https://www.sketchymaze.com"
|
||||||
|
|
||||||
# Debian Package
|
# Debian Package
|
||||||
fpm -C ./root -s dir -t deb \
|
fpm -C ./root -s dir -t deb \
|
||||||
-d libsdl2 -d libsdl2-ttf -a x86_64 \
|
-d libsdl2 -d libsdl2-ttf -a x86_64 \
|
||||||
-n project-doodle -v ${VERSION} \
|
-n sketchy-maze -v ${VERSION} \
|
||||||
--license="Copyright" \
|
--license="Copyright" \
|
||||||
--maintainer=noah@kirsle.net \
|
--maintainer=noah@kirsle.net \
|
||||||
--description="Project: Doodle - A drawing-based maze game." \
|
--description="Sketchy Maze - A drawing-based maze game." \
|
||||||
--url="https://www.kirsle.net/doodle"
|
--url="https://www.sketchymaze.com"
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
# containing the doodad binaries (subdirectory of /dist from git repo root)
|
# containing the doodad binaries (subdirectory of /dist from git repo root)
|
||||||
|
|
||||||
VERSION=`grep -e 'Version =' ../../pkg/branding/branding.go | head -n 1 | cut -d '"' -f 2`
|
VERSION=`grep -e 'Version =' ../../pkg/branding/branding.go | head -n 1 | cut -d '"' -f 2`
|
||||||
INSTALL_ROOT="/opt/project-doodle"
|
INSTALL_ROOT="/opt/sketchy-maze"
|
||||||
APP_NAME="Project Doodle.app"
|
APP_NAME="Project Doodle.app"
|
||||||
APP_FOLDER="../../etc/macos/$APP_NAME"
|
APP_FOLDER="../../etc/macos/$APP_NAME"
|
||||||
APP_CONTENTS="$APP_NAME/Contents"
|
APP_CONTENTS="$APP_NAME/Contents"
|
||||||
|
|