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]
|
||||
Version=1.0
|
||||
Type=Application
|
||||
Name=Project: Doodle
|
||||
GenericName=Project Doodle
|
||||
X-GNOME-FullName=Project: Doodle - A drawing-based maze game
|
||||
Name=Sketchy Maze
|
||||
GenericName=Maze Game
|
||||
X-GNOME-FullName=Sketchy Maze - A drawing-based maze game
|
||||
Comment=A drawing-based maze game.
|
||||
Exec=/opt/project-doodle/doodle
|
||||
Path=/opt/project-doodle
|
||||
Exec=/opt/sketchy-maze/doodle
|
||||
Path=/opt/sketchy-maze
|
||||
Icon=project-doodle
|
||||
StartupNotify=true
|
||||
Keywords=game;maze;
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
# fpm-bundle: create bundles for the app.
|
||||
|
||||
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_ROOT="/usr/share/applications" # Where the .desktop file goes.
|
||||
ICON_ROOT="/usr/share/icons/hicolor/"
|
||||
|
@ -47,17 +47,17 @@ echo =====================
|
|||
# RPM Package
|
||||
fpm -C ./root -s dir -t rpm \
|
||||
-d SDL2 -d SDL2_ttf -a x86_64 \
|
||||
-n project-doodle -v ${VERSION} \
|
||||
-n sketchy-maze -v ${VERSION} \
|
||||
--license="Copyright" \
|
||||
--maintainer=noah@kirsle.net \
|
||||
--description="Project: Doodle - A drawing-based maze game." \
|
||||
--url="https://www.kirsle.net/doodle"
|
||||
--description="Sketchy Maze - A drawing-based maze game." \
|
||||
--url="https://www.sketchymaze.com"
|
||||
|
||||
# Debian Package
|
||||
fpm -C ./root -s dir -t deb \
|
||||
-d libsdl2 -d libsdl2-ttf -a x86_64 \
|
||||
-n project-doodle -v ${VERSION} \
|
||||
-n sketchy-maze -v ${VERSION} \
|
||||
--license="Copyright" \
|
||||
--maintainer=noah@kirsle.net \
|
||||
--description="Project: Doodle - A drawing-based maze game." \
|
||||
--url="https://www.kirsle.net/doodle"
|
||||
--description="Sketchy Maze - A drawing-based maze game." \
|
||||
--url="https://www.sketchymaze.com"
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
# 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`
|
||||
INSTALL_ROOT="/opt/project-doodle"
|
||||
INSTALL_ROOT="/opt/sketchy-maze"
|
||||
APP_NAME="Project Doodle.app"
|
||||
APP_FOLDER="../../etc/macos/$APP_NAME"
|
||||
APP_CONTENTS="$APP_NAME/Contents"
|
||||
|
|