Package Details: interception-vimproved-git f4aa0fa-1

Git Clone URL: https://aur.archlinux.org/interception-vimproved-git.git (read-only, click to copy)
Package Base: interception-vimproved-git
Description: vimproved: unofficial plugin for Interception Tools combining features of caps2esc and space cadet for making held space work as a special fn key.
Upstream URL: https://github.com/maricn/interception-vimproved
Licenses: Apache-2.0
Submitter: romgrk
Maintainer: romgrk
Last Packager: romgrk
Votes: 0
Popularity: 0.000000
First Submitted: 2022-07-10 03:22 (UTC)
Last Updated: 2022-07-10 03:22 (UTC)

Dependencies (4)

Required by (0)

Sources (1)

Latest Comments

mal1k.me commented on 2026-04-08 07:06 (UTC) (edited on 2026-04-08 07:07 (UTC) by mal1k.me)

make install hardcodes installation to /opt/interception, which is incompatible with Arch packaging and fails under fakeroot due to attempts to modify the host filesystem (Permission denied). Fix by avoiding upstream install logic and installing the compiled binary directly into ${pkgdir} instead:

package() {
    cd "${srcdir}/${pkgname}"
    install -Dm755 build/interception-vimproved "${pkgdir}/usr/bin/interception-vimproved"
}

This ensures proper DESTDIR-compliant packaging and prevents writes outside the package staging directory. Users can apply via manual PKGBUILD edit or yay -S interception-vimproved-git --editmenu.


Upstream commit: 3bae3fc

AUR package commit 9f15008