summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexis2024-04-02 06:52:06 -0400
committerAlexis2024-04-02 06:52:06 -0400
commit58376718adfd2ee6f1e07d70532228ee42327241 (patch)
tree0028d7710ce590f0f1c6f82a40a323c4465b6fc6
parent2f08369a71074724c8989952f6f62ee85ea38bcf (diff)
downloadaur-58376718adfd2ee6f1e07d70532228ee42327241.tar.gz
added optional dependencies
-rw-r--r--.SRCINFO4
-rw-r--r--PKGBUILD6
2 files changed, 8 insertions, 2 deletions
diff --git a/.SRCINFO b/.SRCINFO
index b0ac21666226..bd1da165b7fc 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,13 +1,15 @@
pkgbase = catgirl-engine
pkgdesc = A game engine for cool moddability and procedurally generated data
pkgver = 0.12.32
- pkgrel = 5
+ pkgrel = 6
url = https://github.com/lexi-the-cute/catgirl-engine
arch = any
license = Zlib
makedepends = rustup
makedepends = cargo-nightly
makedepends = sed
+ optdepends = wayland: Graphics display server
+ optdepends = xorg-server: Graphics display server
conflicts = catgirl-engine-git
options = !strip
options = !debug
diff --git a/PKGBUILD b/PKGBUILD
index b6c201ac7441..c7d9ea5b61e2 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -6,7 +6,7 @@ arch=('any')
url="https://github.com/lexi-the-cute/catgirl-engine"
license=(Zlib)
pkgver=0.12.32
-pkgrel=5
+pkgrel=6
conflicts=(catgirl-engine-git)
source=("$pkgname-$pkgver.tar.gz::https://static.crates.io/crates/$pkgname/$pkgname-$pkgver.crate")
b2sums=("SKIP")
@@ -16,6 +16,10 @@ makedepends=(
"cargo-nightly"
"sed"
)
+optdepends=(
+ "wayland: Graphics display server"
+ "xorg-server: Graphics display server"
+)
# Generated in accordance to https://wiki.archlinux.org/title/Rust_package_guidelines.
# Might require further modification depending on the package involved.