From 7a7196330ce2eb72a020fd7151804ba995d9244d Mon Sep 17 00:00:00 2001 From: Paragoumba <22895992+Paragoumba@users.noreply.github.com> Date: Thu, 6 Jun 2024 18:57:11 +0200 Subject: [PATCH] Initial submission --- .SRCINFO | 14 ++++++++++++++ PKGBUILD | 26 ++++++++++++++++++++++++++ 2 files changed, 40 insertions(+) create mode 100644 .SRCINFO create mode 100644 PKGBUILD diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 000000000000..432079c13c20 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,14 @@ +pkgbase = proton-pass-bin + pkgdesc = Open-source password manager for effortless protection. Securely store, share and auto-login your accounts with Proton Pass, using end-to-end encryption trusted by millions. + pkgver = 1.17.5 + pkgrel = 1 + url = https://proton.me/pass + arch = x86_64 + groups = ProtonPass + makedepends = git + makedepends = python-setuptools + conflicts = protonpass + source = https://proton.me/download/PassDesktop/linux/x64/ProtonPass_1.17.5.deb + sha256sums = d9d9d1ff82e92e242525e6efef8fc5ecbfdae6560f87e00c3ea4152011efc5c8 + +pkgname = proton-pass-bin diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 000000000000..150193b27eea --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,26 @@ +# Maintainer: Paragoumba + +pkgname=proton-pass-bin +pkgver=1.17.5 +pkgrel=1 +pkgdesc="Open-source password manager for effortless protection. Securely store, share and auto-login your accounts with Proton Pass, using end-to-end encryption trusted by millions." +arch=("x86_64") +url="https://proton.me/pass" +groups=("ProtonPass") + +makedepends=("git" "python-setuptools") +source=("https://proton.me/download/PassDesktop/linux/x64/ProtonPass_${pkgver}.deb") +sha256sums=('d9d9d1ff82e92e242525e6efef8fc5ecbfdae6560f87e00c3ea4152011efc5c8') + +conflicts=('protonpass') + +package() { + tar -xvf data.tar.xz -C "$pkgdir/" + + install -d "$pkgdir/opt/" + mv "$pkgdir/usr/lib/proton-pass" "$pkgdir/opt/" + + ln -sf "/opt/proton-pass/Proton Pass" "$pkgdir/usr/bin/proton-pass" + + rm -rf "$pkgdir"/usr/share/{doc,lintian} +}