Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions packagelist
Original file line number Diff line number Diff line change
Expand Up @@ -853,6 +853,7 @@ vscode-languageservers:vscode-json-languageserver
vscode-languageservers:vscode-html-languageserver
vscodium-bin
vscodium-deb
vulkan-low-latency-layer
vyprvpn-deb
waf
walc-app
Expand Down
22 changes: 22 additions & 0 deletions packages/vulkan-low-latency-layer/.SRCINFO
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
pkgbase = vulkan-low-latency-layer-git
gives = vulkan-low-latency-layer
pkgver = 0.1.0
pkgdesc = Vulkan layer for hardware agnostic input latency reduction
url = https://github.com/Korthos-Software/low_latency_layer
arch = x86_64
depends = libgcc-s1
makedepends = build-essential
makedepends = cmake
makedepends = vulkan-utility-libraries-dev
makedepends = libvulkan-dev
makedepends = glslang-dev
makedepends = glslc
conflicts = vulkan-low-latency-layer
provides = vulkan-low-latency-layer
license = MIT
maintainer = pejuton <pejuton@proton.me>
repology = project: vulkan-low-latency-layer
source = git+https://github.com/Korthos-Software/low_latency_layer.git
sha256sums = SKIP

pkgname = vulkan-low-latency-layer-git
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
pkgname="vulkan-low-latency-layer-git"
gives="vulkan-low-latency-layer"
_gitname="low_latency_layer"
pkgdesc="Vulkan layer for hardware agnostic input latency reduction"
repology=("project: ${gives}")
arch=('x86_64')
pkgver="0.1.0"
url='https://github.com/Korthos-Software/low_latency_layer'
license=('MIT')
source=("git+https://github.com/Korthos-Software/low_latency_layer.git")
sha256sums=('SKIP')
provides=("${gives}")
conflicts=("${gives}")
depends=(
"libgcc-s1"
)
makedepends=(
"build-essential"
"cmake"
"vulkan-utility-libraries-dev"
"libvulkan-dev"
"glslang-dev"
"glslc"
)
maintainer=("pejuton <pejuton@proton.me>")

build() {
cmake -S "${_gitname}" -B build \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=lib \
-DCMAKE_CXX_FLAGS="${CXXFLAGS} -DNDEBUG" \
-Wno-dev

cmake --build build --parallel "${NCPU}"
}

package() {
DESTDIR="${pkgdir}" cmake --install build
install -Dm644 "${_gitname}"/LICENSE -t "${pkgdir}/usr/share/licenses/${gives}"
}
23 changes: 23 additions & 0 deletions srclist
Original file line number Diff line number Diff line change
Expand Up @@ -16958,6 +16958,29 @@ pkgbase = vscodium-deb

pkgname = vscodium-deb
---
pkgbase = vulkan-low-latency-layer-git
gives = vulkan-low-latency-layer
pkgver = 0.1.0
pkgdesc = Vulkan layer for hardware agnostic input latency reduction
url = https://github.com/Korthos-Software/low_latency_layer
arch = x86_64
depends = libgcc-s1
makedepends = build-essential
makedepends = cmake
makedepends = vulkan-utility-libraries-dev
makedepends = libvulkan-dev
makedepends = glslang-dev
makedepends = glslc
conflicts = vulkan-low-latency-layer
provides = vulkan-low-latency-layer
license = MIT
maintainer = pejuton <pejuton@proton.me>
repology = project: vulkan-low-latency-layer
source = git+https://github.com/Korthos-Software/low_latency_layer.git
sha256sums = SKIP

pkgname = vulkan-low-latency-layer-git
---
pkgbase = vyprvpn-deb
gives = vyprvpn
pkgver = 1.8
Expand Down
Loading