summaryrefslogblamecommitdiff
path: root/dev-vcs/git-lfs-transfer/git-lfs-transfer-0.20240308.ebuild
blob: f9e96bd87f4471161092edeb6aa1b471af4a31ac (plain) (tree)






























                                                                                           
# Copyright 2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

inherit go-module
GIT_COMMIT="6dbff1b9ed9b07882f616842510a09f08e0ec6ef"

DESCRIPTION="Server-side implementation of the Git LFS pure SSH-based protocol"
HOMEPAGE="https://github.com/charmbracelet/git-lfs-transfer"
SRC_URI="https://github.com/charmbracelet/${PN}/archive/${GIT_COMMIT}.tar.gz -> ${P}.tar.gz
	http://people.meleeweb.net/~beber/gentoo/${P}-deps.tar.xz"

LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"

S="${WORKDIR}/${PN}-${GIT_COMMIT}"

src_compile () {
	ego build -o "${PN}" \
		|| die

	default
}

src_install () {
	dobin "${PN}"

	dodoc README.md
}