From f0e0bffa2510266ffb6c2fa566408cd69c2308f8 Mon Sep 17 00:00:00 2001 From: Alejandro Osornio Date: Thu, 20 Jun 2024 20:52:02 -0600 Subject: [PATCH] Re-add gitkraken-wayland --- entrypoint.sh | 2 +- gitkraken-wayland/.gitignore | 5 +++++ gitkraken-wayland/GitKrakenWayland.desktop | 12 +++++++++++ gitkraken-wayland/PKGBUILD | 24 ++++++++++++++++++++++ 4 files changed, 42 insertions(+), 1 deletion(-) create mode 100644 gitkraken-wayland/.gitignore create mode 100755 gitkraken-wayland/GitKrakenWayland.desktop create mode 100644 gitkraken-wayland/PKGBUILD diff --git a/entrypoint.sh b/entrypoint.sh index edf96a3..ac1fc7d 100644 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -22,7 +22,7 @@ rm ./gpg_key gpg --list-keys --keyid-format=long gpg --list-secret-keys --keyid-format=long -for i in typst-git helix-git; do +for i in gitkraken-wayland typst-git helix-git; do status=13 git submodule update --init $i cd $i diff --git a/gitkraken-wayland/.gitignore b/gitkraken-wayland/.gitignore new file mode 100644 index 0000000..a20313e --- /dev/null +++ b/gitkraken-wayland/.gitignore @@ -0,0 +1,5 @@ +*.pkg.tar.zst +*.tar.gz +pkg/ +src/ +gitkraken-wayland diff --git a/gitkraken-wayland/GitKrakenWayland.desktop b/gitkraken-wayland/GitKrakenWayland.desktop new file mode 100755 index 0000000..c9df0b2 --- /dev/null +++ b/gitkraken-wayland/GitKrakenWayland.desktop @@ -0,0 +1,12 @@ +[Desktop Entry] +Name=GitKraken Wayland +Comment=Unleash your repo +GenericName=Git Client +Exec=gitkraken %f --ozone-platform-hint=auto +Icon=gitkraken +Terminal=false +Type=Application +StartupNotify=true +Categories=GNOME;GTK;Development;RevisionControl; +MimeType=text/plain; +StartupWMClass=gitkraken diff --git a/gitkraken-wayland/PKGBUILD b/gitkraken-wayland/PKGBUILD new file mode 100644 index 0000000..19e1169 --- /dev/null +++ b/gitkraken-wayland/PKGBUILD @@ -0,0 +1,24 @@ +# Maintainer: Alejandro Osornio + +pkgname=gitkraken-wayland +pkgrel=1 +pkgver=1.0.0 +pkgdesc="The intuitive, fast, and beautiful cross-platform Git client." +url="https://www.gitkraken.com/" +provides=('gitkraken') +arch=('any') +license=('custom') +depends=('gitkraken') +optdepends=() +makedepends=() +conflicts=() +backup=() +install='' +source=( + "GitKrakenWayland.desktop" +) +sha256sums=('f36db9ba3a550995546785dc3e18a1877d5b2320de6e1157789fcd2a592ce7f6') + +package() { + install -D -m644 "./GitKrakenWayland.desktop" "${pkgdir}/usr/share/applications/GitKrakenWayland.desktop" +}