forked from PhoenicisOrg/phoenicis
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update icon and improve deb package (PhoenicisOrg#1670)
- Loading branch information
Showing
21 changed files
with
53 additions
and
40 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#!/bin/bash | ||
|
||
/usr/share/phoenicis/PhoenicisPlayOnLinux "$@" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
[Desktop Entry] | ||
Version=1.0 | ||
Encoding=UTF-8 | ||
Name=Phoenicis PlayOnLinux | ||
GenericName=Phoenicis PlayOnLinux | ||
Comment=Phoenicis | ||
Type=Application | ||
Exec=phoenicis %F | ||
Icon=phoenicis | ||
Categories=Game;Utility; |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -62,7 +62,43 @@ fi | |
|
||
if [ "$PHOENICIS_OPERATING_SYSTEM" == "Linux" ]; then | ||
jpackager create-image "${PHOENICIS_JPACKAGER_ARGUMENTS[@]}" --linux-bundle-name "phoenicis-playonlinux" | ||
jpackager create-installer deb "${PHOENICIS_JPACKAGER_ARGUMENTS[@]}" --linux-package-deps "unzip, wget, xterm | x-terminal-emulator, imagemagick, cabextract, icoutils, p7zip-full, curl, winbind" --linux-deb-maintainer "PlayOnLinux Packaging <[email protected]>" --linux-bundle-name "phoenicis-playonlinux" | ||
fi | ||
|
||
|
||
packageName="Phoenicis_$VERSION" | ||
cd "$PHOENICIS_TARGET" | ||
rmdir packages/PhoenicisPlayOnLinux/ | ||
rm -rf "packages/phoenicis" 2> /dev/null | ||
mv packages/Phoenicis\ PlayOnLinux/ packages/phoenicis | ||
rm -rf "$packageName" 2> /dev/null | ||
mkdir -p "$packageName/DEBIAN/" | ||
|
||
cat << EOF > "$packageName/DEBIAN/control" | ||
Package: phoenicis-playonlinux | ||
Version: $VERSION | ||
Section: misc | ||
Priority: optional | ||
Architecture: all | ||
Depends: unzip, wget, xterm | x-terminal-emulator, python, imagemagick, cabextract, icoutils, p7zip-full, curl | ||
Maintainer: PlayOnLinux Packaging <[email protected]> | ||
Description: This program is a front-end for wine. | ||
It permits you to install Windows Games and softwares | ||
on Linux. It allows you to manage differents virtual hard drive, | ||
and several wine versions. | ||
Copyright 2011-2019 PlayOnLinux team <[email protected]> | ||
EOF | ||
|
||
mkdir -p $packageName/usr/share/applications | ||
mkdir -p $packageName/usr/share/pixmaps | ||
mkdir -p $packageName/usr/bin | ||
|
||
cp -a packages/phoenicis $packageName/usr/share/ | ||
cp -a "$SCRIPT_PATH/../launchers/phoenicis" $packageName/usr/bin/phoenicis | ||
chmod +x $packageName/usr/bin/phoenicis | ||
|
||
cp "$SCRIPT_PATH/../resources/Phoenicis.desktop" "$packageName/usr/share/applications" | ||
cp "$SCRIPT_PATH/../resources/phoenicis.png" "$packageName/usr/share/pixmaps" | ||
cp "$SCRIPT_PATH/../resources/phoenicis-16.png" "$packageName/usr/share/pixmaps" | ||
cp "$SCRIPT_PATH/../resources/phoenicis-32.png" "$packageName/usr/share/pixmaps" | ||
|
||
fakeroot dpkg-deb --build "$packageName" | ||
rm -rf deb | ||
fi |
Binary file modified
BIN
+4.15 KB
(130%)
...nicis-javafx/src/main/resources/org/phoenicis/javafx/views/common/phoenicis.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+625 Bytes
(130%)
...cis-javafx/src/main/resources/org/phoenicis/javafx/views/common/phoenicis32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.