mirror of
https://github.com/archlinux/aur.git
synced 2026-03-14 23:16:48 +01:00
fix: set suid on chrome-sandbox for proper sandboxing
This commit is contained in:
parent
2ab61666c7
commit
9c31a10faf
2 changed files with 7 additions and 3 deletions
2
.SRCINFO
2
.SRCINFO
|
|
@ -1,7 +1,7 @@
|
|||
pkgbase = cogpit
|
||||
pkgdesc = Dashboard for browsing and inspecting Claude Code agent sessions
|
||||
pkgver = 0.0.1
|
||||
pkgrel = 2
|
||||
pkgrel = 3
|
||||
url = https://github.com/gentritbiba/cogpit
|
||||
arch = x86_64
|
||||
license = MIT
|
||||
|
|
|
|||
8
PKGBUILD
8
PKGBUILD
|
|
@ -1,7 +1,7 @@
|
|||
# Maintainer: Gentrit Biba <gentritbiba@gmail.com>
|
||||
pkgname=cogpit
|
||||
pkgver=0.0.1
|
||||
pkgrel=2
|
||||
pkgrel=3
|
||||
pkgdesc="Dashboard for browsing and inspecting Claude Code agent sessions"
|
||||
arch=('x86_64')
|
||||
url="https://github.com/gentritbiba/cogpit"
|
||||
|
|
@ -12,5 +12,9 @@ sha256sums=('cf2251ec59fd45797f80051c432513abf6cce04e8fa4b98ace61dd3aefef02ec')
|
|||
|
||||
package() {
|
||||
cd "${srcdir}"
|
||||
tar -xf "${pkgname}-${pkgver}.pacman" -C "${pkgdir}/" --exclude='.MTREE' --exclude='.PKGINFO' --exclude='.INSTALL'
|
||||
tar -xf "${pkgname}-${pkgver}.pacman" -C "${pkgdir}/" \
|
||||
--exclude='.MTREE' --exclude='.PKGINFO' --exclude='.INSTALL'
|
||||
|
||||
# chrome-sandbox requires suid for Chromium sandboxing
|
||||
chmod 4755 "${pkgdir}/opt/Cogpit/chrome-sandbox"
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue