Skip to content

Commit

Permalink
feat: Support rpm package creation for OpenSUSE (#130)
Browse files Browse the repository at this point in the history
  • Loading branch information
tisoft authored Sep 11, 2024
1 parent 1092684 commit df4f272
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .changeset/old-monkeys-drum.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"app-builder-bin": minor
---

Added support for OpenSUSE to rpm
4 changes: 2 additions & 2 deletions pkg/package-format/fpm/fpm.go
Original file line number Diff line number Diff line change
Expand Up @@ -151,9 +151,9 @@ func getDefaultDepends(target string) []string {
case "rpm":
return []string{
"gtk3", /* for electron 2+ (electron 1 uses gtk2, but this old version is not supported anymore) */
"libnotify", "nss", "libXScrnSaver", "libXtst", "xdg-utils",
"libnotify", "nss", "libXScrnSaver", "(libXtst or libXtst6)", "xdg-utils",
"at-spi2-core", /* since 5.0.0 */
"libuuid", /* since 4.0.0 */
"(libuuid or libuuid1)", /* since 4.0.0 */
}

case "pacman":
Expand Down

0 comments on commit df4f272

Please sign in to comment.