Package Details: karing-bin 1.2.22.2502-1

Git Clone URL: https://aur.archlinux.org/karing-bin.git (read-only, click to copy)
Package Base: karing-bin
Description: Simple & Powerful proxy utility, Support routing rules for clash/sing-box
Upstream URL: https://github.com/KaringX/karing
Licenses: GPL-3.0-or-later
Conflicts: karing, karing-git
Provides: karing
Submitter: czyt
Maintainer: czyt
Last Packager: czyt
Votes: 4
Popularity: 0.89
First Submitted: 2025-10-14 01:36 (UTC)
Last Updated: 2026-07-13 14:14 (UTC)

Latest Comments

czyt commented on 2026-07-03 07:04 (UTC)

已经修改

colechou8 commented on 2026-07-03 02:46 (UTC)

新版把karing的目录移动到了/opt下面,但/usr/bin/karing 还是指向/usr/目录,导致不能启动程序。一直没修复。临时手动修复sudo ln -sf /opt/karing/karing /usr/bin/karing

DragonX256 commented on 2026-06-27 15:25 (UTC) (edited on 2026-06-27 15:41 (UTC) by DragonX256)

New version moved karing directory with executables to /opt/karing

You should edit your PKGBUILD accordingly

package() {
    cd "${srcdir}"

    bsdtar -xf "${pkgname}-${pkgver}.deb"
    bsdtar -xf data.tar.zst -C "${pkgdir}"

    # Create symlink for the binary
    install -dm755 "${pkgdir}/usr/bin"
    ln -sf "/opt/karing/karing" "${pkgdir}/usr/bin/karing"
}