sops-bin-3.9.2.ebuild - overlay - dark gentoo overlay
HTML git clone https://git.drkhsh.at/overlay.git
DIR Log
DIR Files
DIR Refs
DIR README
---
sops-bin-3.9.2.ebuild (609B)
---
1 # Copyright 2021 Gentoo Authors
2 # Distributed under the terms of the GNU General Public License v2
3
4 EAPI=8
5 inherit unpacker
6
7 MY_PN="${PN/-bin}"
8
9 DESCRIPTION="Mozilla SOPS: Secrets OPerationS (binary version)"
10 HOMEPAGE="https://github.com/mozilla/sops"
11
12 SRC_URI="https://github.com/mozilla/sops/releases/download/v${PV}/sops_${PV}_amd64.deb"
13
14 RESTRICT="mirror strip bindist"
15
16 LICENSE="MIT"
17 SLOT="0"
18 KEYWORDS="-* ~amd64"
19
20 DEPEND=""
21 RDEPEND="${DEPEND}"
22 BDEPEND=""
23
24 #QA_PRESTRIPPED="*"
25 #QA_PREBUILT="opt/${MY_PN}/sops"
26
27 S="${WORKDIR}"
28
29 src_unpack(){
30 unpack_deb ${A}
31 }
32 src_install(){
33 dobin usr/bin/${MY_PN}
34 }