From 69ab0ee60eef4f04e5799098eeec0cbec713d8d0 Mon Sep 17 00:00:00 2001 From: Rahammetoela Toekiman Date: Thu, 11 Apr 2024 19:18:41 -0300 Subject: [PATCH] remove xmir support, tis dead --- README.md | 1 - lib/clickfunc | 2 +- lib/pkgfunc | 4 ---- 3 files changed, 1 insertion(+), 6 deletions(-) diff --git a/README.md b/README.md index d72a74e..5233842 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,6 @@ Crackle specific commands: ## Limitations the following are the limitations of crackle: -- currently crackle starts all gui apps with xmir for the sake of running them on Ubuntu Touch - crackle doesn't work on systems with a readwrite rootfs - currently crackle doesn't know how to remove packages - crackle doesn't know how to deal with all packages, so it may be hit or miss please report packages that don't work on gitlab diff --git a/lib/clickfunc b/lib/clickfunc index 5b741bb..223818d 100644 --- a/lib/clickfunc +++ b/lib/clickfunc @@ -16,7 +16,7 @@ function build_click () { fi if [ ! -f "manifest.json.in" ]; then say "Preparing build environment..." - prep_build ${XMIR:-"xmir-enable"}; + prep_build; fi say "Building package tree..." [ -d ${CLICK_LD_LIBRARY_PATH} ] || mkdir -p ${CLICK_LD_LIBRARY_PATH} ${CLICK_PATH} diff --git a/lib/pkgfunc b/lib/pkgfunc index 2ed8ee3..23f4622 100644 --- a/lib/pkgfunc +++ b/lib/pkgfunc @@ -109,10 +109,6 @@ function fetch_desktop() { if [[ -f "$1" ]]; then ${SCRP_DIR}/desktop_trunc $1 > $2 echo "X-Ubuntu-Touch=true" >> $2 - xmir=${3:-"xmir-enable"} - if [[ ${xmir} = "xmir-enable" ]] ; then - echo "X-Ubuntu-XMir-Enable=true" >> $2 - fi fi }