summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorEmil Velikov2022-11-20 16:03:23 +0000
committerEmil Velikov2022-11-20 16:03:23 +0000
commit3913e863a12051f1356a997b3026a6480942ebae (patch)
treea47f7a35378bf84851c59dfddba387d75d67f79a
parent03d9229829c016095550d661f08f15ead43b02a6 (diff)
downloadaur-3913e863a12051f1356a997b3026a6480942ebae.tar.gz
waffle 1.7.0-3: demote libgl and libgles as optdepends
One can use waffle without libGL.so aka (GLX or OpenGL). Similarly using GLES + GLX (aka libGL.so) also an option. Mark the dependencies as optional. Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
-rw-r--r--.SRCINFO6
-rw-r--r--PKGBUILD8
2 files changed, 8 insertions, 6 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 24bb9735cf37..9b21227b34bf 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = waffle
pkgdesc = a library for choosing window system and OpenGL API at runtime
pkgver = 1.7.0
- pkgrel = 2
+ pkgrel = 3
url = https://waffle.freedesktop.org
arch = x86_64
license = BSD
@@ -16,8 +16,8 @@ pkgbase = waffle
depends = libx11
depends = libxcb
depends = libudev.so
- depends = libgl
- depends = libgles
+ optdepends = libgl: for OpenGL or GLX support
+ optdepends = libgles: for GLES support
optdepends = libegl: for gbm, surfaceless, x11_egl or wayland support
optdepends = mesa: for gbm support
optdepends = wayland: for wayland support
diff --git a/PKGBUILD b/PKGBUILD
index 8b6a4676077e..adc8179611f7 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -5,14 +5,16 @@
pkgname=waffle
pkgver=1.7.0
-pkgrel=2
+pkgrel=3
pkgdesc='a library for choosing window system and OpenGL API at runtime'
arch=('x86_64')
url='https://waffle.freedesktop.org'
license=('BSD')
-depends=('libx11' 'libxcb' 'libudev.so' 'libgl' 'libgles')
-optdepends=('libegl: for gbm, surfaceless, x11_egl or wayland support'
+depends=('libx11' 'libxcb' 'libudev.so')
+optdepends=('libgl: for OpenGL or GLX support'
+ 'libgles: for GLES support'
+ 'libegl: for gbm, surfaceless, x11_egl or wayland support'
'mesa: for gbm support'
'wayland: for wayland support')