mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-11 08:03:16 -04:00
Signed-off-by: joker1007 <kakyoin.hierophant@gmail.com> Part-of: https://github.com/gentoo/guru/pull/404 Signed-off-by: David Roman <davidroman96@gmail.com>
74 lines
2.2 KiB
Bash
74 lines
2.2 KiB
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
# Pulled from jaredallard's overlay to GURU
|
|
|
|
EAPI=8
|
|
|
|
inherit desktop optfeature xdg
|
|
|
|
DESCRIPTION="Password Manager"
|
|
HOMEPAGE="https://1password.com"
|
|
SRC_URI="
|
|
amd64? ( https://downloads.1password.com/linux/tar/stable/x86_64/${P}.x64.tar.gz -> ${P}-amd64.tar.gz )
|
|
arm64? ( https://downloads.1password.com/linux/tar/stable/aarch64/${P}.arm64.tar.gz -> ${P}-arm64.tar.gz )"
|
|
|
|
S="${WORKDIR}"
|
|
LICENSE="all-rights-reserved"
|
|
SLOT="0"
|
|
|
|
KEYWORDS="~amd64 ~arm64"
|
|
RESTRICT="bindist mirror strip"
|
|
|
|
DEPEND="
|
|
x11-misc/xdg-utils
|
|
acct-group/1password
|
|
"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
QA_PREBUILT="/opt/1Password/*"
|
|
|
|
src_install() {
|
|
dodir /opt/1Password
|
|
cp -ar "${S}/${PN}-"**"/"* "${ED}/opt/1Password/" || die "Install failed!"
|
|
|
|
# Fill in policy kit file with a list of (the first 10) human users of
|
|
# the system.
|
|
dodir /usr/share/polkit-1/actions
|
|
local policy_owners
|
|
policy_owners="$(cut -d: -f1,3 /etc/passwd \
|
|
| grep -E ':[0-9]{4}$' \
|
|
| cut -d: -f1 \
|
|
| head -n 10 \
|
|
| sed 's/^/unix-user:/' \
|
|
| tr '\n' ' ')"
|
|
sed -e "s/\${POLICY_OWNERS}/${policy_owners}/" \
|
|
"${ED}/opt/1Password/com.1password.1Password.policy.tpl" \
|
|
> "${ED}/usr/share/polkit-1/actions/com.1password.1Password.policy" ||
|
|
die "Failed to create policy file"
|
|
|
|
fperms 644 /usr/share/polkit-1/actions/com.1password.1Password.policy
|
|
|
|
dosym -r /opt/1Password/1password /usr/bin/1password
|
|
dosym -r /opt/1Password/op-ssh-sign /usr/bin/op-ssh-sign
|
|
|
|
domenu /opt/1Password/resources/1password.desktop
|
|
newicon "${ED}/opt/1Password/resources/icons/hicolor/512x512/apps/1password.png" "${PN}.png"
|
|
|
|
dodoc "${ED}/opt/1Password/resources/custom_allowed_browsers"
|
|
|
|
# chrome-sandbox requires the setuid bit to be specifically set.
|
|
# See https://github.com/electron/electron/issues/17972
|
|
fperms 4755 /opt/1Password/chrome-sandbox
|
|
|
|
# This gives no extra permissions to the binary. It only hardens it against environmental tampering.
|
|
chgrp 1password "${ED}/opt/1Password/1Password-BrowserSupport" || die "Failed to change group of 1Password-BrowserSupport"
|
|
fperms g+s "/opt/1Password/1Password-BrowserSupport"
|
|
}
|
|
|
|
pkg_postinst() {
|
|
xdg_pkg_postinst
|
|
|
|
optfeature "1Password CLI" app-misc/1password-cli
|
|
}
|