-
Notifications
You must be signed in to change notification settings - Fork 76
Add omarchy-quake (Quake 1: vkQuake, Omarchy panel, Tailscale deathmatch) #175
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
ryrobes
wants to merge
3
commits into
omacom:master
Choose a base branch
from
ryrobes:add-omarchy-quake
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 @@ | ||
| { | ||
| "source": "local" | ||
| } |
This file contains hidden or 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,65 @@ | ||
| # Maintainer: Ryan Robitaille <ryan.robitaille@gmail.com> | ||
| # Draft for omacom-io/omarchy-pkgs (pkgbuilds/omarchy-quake). | ||
| # Source tag is cut on github.com/ryrobes/omarchy-quake. | ||
|
|
||
| pkgname=omarchy-quake | ||
| pkgver=1.6.3 | ||
| pkgrel=1 | ||
| pkgdesc="Quake 1 for Omarchy (vkQuake, shareware fetch, Tailscale deathmatch)" | ||
| arch=('x86_64' 'aarch64') | ||
| url="https://github.com/ryrobes/omarchy-quake" | ||
| license=('MIT' 'GPL-2.0-or-later') | ||
| options=('!debug') | ||
| depends=( | ||
| sdl3 | ||
| vulkan-icd-loader | ||
| mpg123 | ||
| libvorbis | ||
| flac | ||
| opus | ||
| opusfile | ||
| libogg | ||
| python | ||
| libarchive | ||
| wl-clipboard | ||
| hicolor-icon-theme | ||
| ) | ||
| makedepends=( | ||
| meson | ||
| ninja | ||
| git | ||
| patch | ||
| pkgconf | ||
| vulkan-headers | ||
| glslang | ||
| spirv-tools | ||
| ) | ||
| optdepends=( | ||
| 'vulkan-swrast: software rendering when there is no GPU' | ||
| 'omarchy: menu stub, plugin enable, Hyprland session' | ||
| 'tailscale: deathmatch over a tailnet' | ||
| '7zip: faster shareware extraction (bsdtar is the fallback)' | ||
| ) | ||
| source=( | ||
| "$pkgname-$pkgver.tar.gz::https://github.com/ryrobes/omarchy-quake/archive/refs/tags/v$pkgver.tar.gz" | ||
| "vkQuake-1.35.0.tar.gz::https://github.com/Novum/vkQuake/archive/refs/tags/1.35.0.tar.gz" | ||
| ) | ||
| sha256sums=( | ||
| '0cb3b685acc9ac4c14a5a0ae0f96b28dbe2e5260cf40e391801192f5e9a11eba' | ||
| '9f3a2bbf7ef22224c26a1a0d574562573fdaae2dc9758a98068617062d49c584' | ||
| ) | ||
|
|
||
| prepare() { | ||
| rm -rf "$srcdir/$pkgname-$pkgver/vendor/vkQuake" | ||
| cp -a "$srcdir/vkQuake-1.35.0" "$srcdir/$pkgname-$pkgver/vendor/vkQuake" | ||
| } | ||
|
|
||
| build() { | ||
| cd "$srcdir/$pkgname-$pkgver" | ||
| bash scripts/build-engine.sh | ||
| } | ||
|
|
||
| package() { | ||
| cd "$srcdir/$pkgname-$pkgver" | ||
| DESTDIR="$pkgdir" PREFIX=/usr SKIP_BUILD=1 bash scripts/install.sh | ||
| } | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The
archarray schedules this package for the repository's aarch64 build target, while the submitted support scope says it is x86_64-only. Advertising only the architecture actually supported avoids publishing an unverified ARM package.