summaryrefslogtreecommitdiffstats
path: root/desktop
diff options
context:
space:
mode:
author Damian Perticone2022-06-07 12:54:35 +0200
committer Willy Sudiarto Raharjo2022-06-11 03:59:00 +0200
commitc562739caab84e2f52ef7239cb7de2f209bce44b (patch)
tree84d438c4c1789c022970860c98bde8632561340c /desktop
parent023c4b7ac4a44afdf5bfe8c638656f8b607e8479 (diff)
downloadslackbuilds-c562739caab84e2f52ef7239cb7de2f209bce44b.tar.gz
desktop/labwc: Updated for version 0.5.2.
Signed-off-by: Dave Woodfall <dave@slackbuilds.org> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'desktop')
-rw-r--r--desktop/labwc/labwc.SlackBuild5
-rw-r--r--desktop/labwc/labwc.info8
-rw-r--r--desktop/labwc/use-system-wlroots.patch31
3 files changed, 5 insertions, 39 deletions
diff --git a/desktop/labwc/labwc.SlackBuild b/desktop/labwc/labwc.SlackBuild
index c96dcf722b..4742f71a95 100644
--- a/desktop/labwc/labwc.SlackBuild
+++ b/desktop/labwc/labwc.SlackBuild
@@ -25,7 +25,7 @@
cd $(dirname $0) ; CWD=$(pwd)
PRGNAM=labwc
-VERSION=${VERSION:-0.5.1}
+VERSION=${VERSION:-0.5.2}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
PKGTYPE=${PKGTYPE:-tgz}
@@ -76,9 +76,6 @@ find -L . \
\( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
-# use system wlroots
-patch -p1 < $CWD/use-system-wlroots.patch
-
mkdir build
cd build
CFLAGS="$SLKCFLAGS" \
diff --git a/desktop/labwc/labwc.info b/desktop/labwc/labwc.info
index 9eb0843ffd..8292580151 100644
--- a/desktop/labwc/labwc.info
+++ b/desktop/labwc/labwc.info
@@ -1,10 +1,10 @@
PRGNAM="labwc"
-VERSION="0.5.1"
+VERSION="0.5.2"
HOMEPAGE="https://github.com/labwc/labwc"
-DOWNLOAD="https://github.com/labwc/labwc/archive/0.5.1/labwc-0.5.1.tar.gz"
-MD5SUM="0432008a05f01eb73fe8408d88dc51e8"
+DOWNLOAD="https://github.com/labwc/labwc/archive/0.5.2/labwc-0.5.2.tar.gz"
+MD5SUM="1c4c522f6d382cedb8f7e4f6d236d9f1"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
-REQUIRES="wlroots scdoc"
+REQUIRES="wlroots"
MAINTAINER="Damian Perticone"
EMAIL="mjolnirdam@gmail.com"
diff --git a/desktop/labwc/use-system-wlroots.patch b/desktop/labwc/use-system-wlroots.patch
deleted file mode 100644
index 3da8758174..0000000000
--- a/desktop/labwc/use-system-wlroots.patch
+++ /dev/null
@@ -1,31 +0,0 @@
---- a/meson.build 2022-04-08 17:44:37.000000000 -0300
-+++ b/meson.build 2022-05-11 01:37:46.655283415 -0300
-@@ -37,22 +37,14 @@
- endif
- add_project_arguments('-DLABWC_VERSION=@0@'.format(version), language: 'c')
-
--wlroots_version = ['>=0.15.0', '<0.16.0']
--wlroots_proj = subproject(
-- 'wlroots',
-- default_options: ['default_library=static', 'examples=false'],
-- required: false,
-- version: wlroots_version,
-+wlroots = dependency(
-+ 'wlroots',
-+default_options: ['default_library=static', 'examples=false'],
-+version: ['>=0.15.0', '<0.16.0'],
- )
-
--if wlroots_proj.found()
-- wlroots = wlroots_proj.get_variable('wlroots')
-- wlroots_conf = wlroots_proj.get_variable('conf_data')
-- wlroots_has_xwayland = wlroots_conf.get('WLR_HAS_XWAYLAND') == 1
--else
-- wlroots = dependency('wlroots', version: wlroots_version)
-- wlroots_has_xwayland = cc.get_define('WLR_HAS_XWAYLAND', prefix: '#include <wlr/config.h>', dependencies: wlroots) == '1'
--endif
-+wlroots_has_xwayland = wlroots.get_variable('have_xwayland') == 'true'
-+
- wayland_server = dependency('wayland-server', version: '>=1.19.0')
- wayland_protos = dependency('wayland-protocols')
- xkbcommon = dependency('xkbcommon')