Skip to content
Snippets Groups Projects
Commit 8bf40ca5 authored by Bro Brian's avatar Bro Brian
Browse files

13.0.1, remove \ before ninja -C build

parent fe9b2e8d
No related branches found
No related tags found
No related merge requests found
Pipeline #37122 failed
......@@ -26,7 +26,15 @@ makedepends=('wayland-protocols' 'meson' 'ninja' 'freerdp2' 'neatvnc' 'libpipewi
prepare() {
cd $pkgname-$pkgver
patch -Np1 < "../../weston-13.0.0-neatvnc0.8.patch"
# apply patch from the source array (should be a pacman feature)
local src
for src in "${source[@]}"; do
src="${src%%::*}"
src="${src##*/}"
[[ $src = *.patch ]] || continue
echo "Applying patch $src..."
patch -Np1 < "../$src"
done
}
#--------------------------------------------| BUILD |------------------------------------------
......@@ -35,7 +43,9 @@ build() {
arch-meson $pkgname-$pkgver build \
--libexec=lib/weston \
-Db_lto=false \
-Dsystemd=false \
-Dsystemd=false
ninja -C build
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment