mirror of
https://github.com/gentoo-mirror/gentoo-zh.git
synced 2025-04-10 11:58:43 -04:00
30 lines
662 B
Bash
30 lines
662 B
Bash
# Copyright 2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit desktop unpacker xdg
|
|
|
|
DESCRIPTION="Opensource Git GUI client."
|
|
HOMEPAGE="https://github.com/sourcegit-scm/sourcegit"
|
|
SRC_URI="https://github.com/sourcegit-scm/sourcegit/releases/download/v${PV}/sourcegit_${PV}-1_amd64.deb"
|
|
|
|
S="${WORKDIR}"
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
RESTRICT="strip"
|
|
|
|
DEPEND="
|
|
dev-vcs/git
|
|
"
|
|
|
|
RDEPEND="${DEPEND}"
|
|
src_install(){
|
|
insinto /opt/sourcegit
|
|
doins -r "${S}"/opt/sourcegit/*
|
|
fperms 755 /opt/sourcegit/sourcegit
|
|
domenu "${FILESDIR}"/sourcegit.desktop
|
|
doicon -s 256 "${S}"/usr/share/icons/sourcegit.png
|
|
}
|