net-fs/goofys - 0.24.0 (canutethegreat-overlay)

Search

Install

Install this version:

emerge -a =net-fs/goofys-0.24.0

If this version is masked, you can unmask it using the autounmask tool or standard emerge options:

autounmask =net-fs/goofys-0.24.0

Or alternatively:

emerge --autounmask-write -a =net-fs/goofys-0.24.0

Package Information

Description:
A high-performance, user-space file system for mounting Amazon S3 buckets
Homepage:
https://github.com/kahing/goofys
License:
Apache-2.0

Ebuild Details

Version EAPI Keywords Slot
0.24.0 7 ~amd64 ~x86 ~arm64 ~arm 0
View Raw Ebuild
# Copyright 1999-2023 Gentoo 
# Distributed under the terms of the GNU General Public License v2

EAPI=7

EGO_PN="github.com/kahing/goofys"

inherit golang-vcs-snapshot

DESCRIPTION="A high-performance, user-space file system for mounting Amazon S3 buckets"
HOMEPAGE="https://github.com/kahing/goofys"
SRC_URI="https://${EGO_PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"

LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~arm64 ~arm"

DEPEND="dev-lang/go"
RDEPEND=""

S="${WORKDIR}/${P}"

src_compile() {
    GOPATH="${S}" emake -C src/github.com/kahing/goofys
}

src_install() {
    dobin src/github.com/kahing/goofys/goofys
    dodoc README.md CHANGELOG.md
}

Inherited Eclasses

Dependencies

DEPEND

dev-lang/go