Skip to content

Commit

Permalink
sway wlroots update
Browse files Browse the repository at this point in the history
  • Loading branch information
sulincix committed May 30, 2024
1 parent 402abb1 commit 83b3de5
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 10 deletions.
10 changes: 5 additions & 5 deletions gui/libs/wlroots/ympbuild
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
#!/usr/bin/env bash
name='wlroots'
release='2'
version='0.17.0'
release='3'
version='0.17.3'
url='https://gitlab.freedesktop.org/wlroots/wlroots'
description='Pluggable, composable, unopinionated modules for building a Wayland compositor'
email='bayramk@gmail.com'
maintainer='bk'
license=('GPLv3')
source=("https://gitlab.freedesktop.org/wlroots/wlroots/-/archive/$version/wlroots-$version.tar.gz")
depends=(seatd hwdata eudev libxkbcommon wayland)
depends=(seatd hwdata eudev libxkbcommon wayland xcb-util-wm)
makedepends=()
md5sums=('350b9085b67fc8496c4a5228bb992c22')
sha256sums=('3c2525528ecb5cd64cf410b2d6d140d4fc28d4a5b2ee06bedab3f0154ebc50b4')
group=(gui.libs)
uses=()
arch=('x86_64')
Expand All @@ -20,7 +20,7 @@ cd $name-$version
setup(){
meson setup build --prefix=/usr \
--libdir=/usr/lib64/ \
-Dexamples=false
-Dexamples=true
}

build(){
Expand Down
12 changes: 12 additions & 0 deletions gui/wm/sway/sway.desktop
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[Desktop Entry]
Name=Sway
Name[en]=Sway
Comment=This session logs you into Sway
Comment[en]=This session logs in you into Sway
Exec=dbus-run-session /usr/bin/sway
TryExec=/usr/bin/sway
Icon=
Type=Application
DesktopNames=Sway
Keywords=launch;Sway;desktop;session;

16 changes: 11 additions & 5 deletions gui/wm/sway/ympbuild
Original file line number Diff line number Diff line change
@@ -1,16 +1,18 @@
#!/usr/bin/env bash
name='sway'
release='1'
version='1.8'
release='2'
version='1.9'
url='https://github.com/swaywm/sway'
description=='i3-compatible Wayland window manager'
email='aliriza.keskin@pardus.org.tr'
maintainer='aliriza'
license=('GPLv3')
source=("https://github.com/swaywm/sway/archive/refs/tags/$version.zip")
source=("https://github.com/swaywm/sway/archive/refs/tags/$version.zip"
"sway.desktop")
depends=(wlroots json-c xorg-xwayland)
makedepends=()
md5sums=('eaf1d5929dc3587c7345d2b8fd362c0a')
sha256sums=('ee978ecb92d10ea799d746e9e73df7cd1b8138aed5361d55abfc6f59d82587f4'
'SKIP')
group=(gui.wm)
uses=()
arch=('x86_64')
Expand All @@ -19,7 +21,9 @@ cd $name-$version

setup(){
meson setup build --prefix=/usr \
--libdir=/usr/lib64/ -D werror=false
--libdir=/usr/lib64/ \
-Dwerror=true \
-Dtray=enabled
}

build(){
Expand All @@ -28,5 +32,7 @@ build(){

package(){
ninja -C build install
install -D -m644 ../sway.desktop \
-t "$DESTDIR"/usr/share/wayland-sessions/
}

0 comments on commit 83b3de5

Please sign in to comment.