summaryrefslogtreecommitdiff
path: root/opt/wlr-randr
diff options
context:
space:
mode:
authorrawnix ports <ports@rawnix.org>2026-09-26 18:19:05 +0000
committerrawnix ports <ports@rawnix.org>2026-09-26 18:19:05 +0000
commitc82e88dd00d1b0b7fcfb4e5628d99611388cef6f (patch)
tree56d864b5a5c6c145edd96178ae219a8f90e191a6 /opt/wlr-randr
downloadports-c82e88dd00d1b0b7fcfb4e5628d99611388cef6f.tar.gz
sync 2026-09-26 18:19 UTC
1672 files changed, 151396 insertions(+)
Diffstat (limited to 'opt/wlr-randr')
-rw-r--r--opt/wlr-randr/.footprint7
-rw-r--r--opt/wlr-randr/.signature6
-rw-r--r--opt/wlr-randr/MAKEPKG34
3 files changed, 47 insertions, 0 deletions
diff --git a/opt/wlr-randr/.footprint b/opt/wlr-randr/.footprint
new file mode 100644
index 0000000..98c5fc3
--- /dev/null
+++ b/opt/wlr-randr/.footprint
@@ -0,0 +1,7 @@
+drwxr-xr-x root/root usr/
+drwxr-xr-x root/root usr/bin/
+-rwxr-xr-x root/root usr/bin/wlr-randr
+drwxr-xr-x root/root usr/share/
+drwxr-xr-x root/root usr/share/man/
+drwxr-xr-x root/root usr/share/man/man1/
+-rw-r--r-- root/root usr/share/man/man1/wlr-randr.1.gz
diff --git a/opt/wlr-randr/.signature b/opt/wlr-randr/.signature
new file mode 100644
index 0000000..01bdb48
--- /dev/null
+++ b/opt/wlr-randr/.signature
@@ -0,0 +1,6 @@
+RWTZ9IduCSQ/mIhrrLarCn8bxM5DZtBc3m368xrEOQxE0JyD3u08MVMmzJReXOgjxZcEVd4/RyeX9nNYxRJhpSFgKyY5Xv1hWwc=
+
+SHA256 (MAKEPKG) = adb4d26b8ab6ab60017148095127252aeb16ac7abf5bbe4acc631c572c3ab4a8
+SHA256 (.footprint) = 00e7a48ee5f6721c8cdbf0a2cbc7306c577367b710829b2d34e310edd0bcc7c5
+SHA256 (wlr-randr-v0.5.0.tar.gz) = c566d94fddb84f801c733f1415a4ad5b75870305346363074cbdf468d4ac263a
+SHA256 (wlr-randr#0.5.0-1.pkg.tar.gz) = c7f0c485cc314f37504da802bd21003c7df365add815fea547e88af222ad1564
diff --git a/opt/wlr-randr/MAKEPKG b/opt/wlr-randr/MAKEPKG
new file mode 100644
index 0000000..4177b94
--- /dev/null
+++ b/opt/wlr-randr/MAKEPKG
@@ -0,0 +1,34 @@
+#!/bin/mkpkg
+# *** Flux Linux ***
+# description: An xrandr clone for wlroots compositors
+# url: https://gitlab.freedesktop.org/emersion/wlr-randr
+
+name=wlr-randr
+version=0.5.0
+release=1
+depends=(wayland)
+makedeps=(meson)
+source=(https://gitlab.freedesktop.org/emersion/wlr-randr/-/archive/v$version/$name-v$version.tar.gz)
+
+sha256sums=(
+ "c566d94fddb84f801c733f1415a4ad5b75870305346363074cbdf468d4ac263a"
+)
+
+build() {
+ cd $name-v$version
+
+ meson setup build \
+ --prefix=/usr \
+ --libdir=/usr/lib \
+ -Dbuildtype=release
+
+ meson compile -C build -j$(nproc)
+ DESTDIR=$PKG meson install -C build --no-rebuild
+}
+
+signify() {
+ untrusted comment: public key
+ RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
+}
+
+# vim: filetype=sh