adbfs-9999.ebuild (538B)
1 # Copyright 1999-2025 Gentoo Authors 2 # Distributed under the terms of the GNU General Public License v2 3 4 EAPI=8 5 6 inherit git-r3 toolchain-funcs 7 8 DESCRIPTION="Mount Android phones on Linux with adb. No root required." 9 HOMEPAGE="https://github.com/spion/adbfs-rootless" 10 EGIT_REPO_URI="https://github.com/spion/adbfs-rootless" 11 12 LICENSE="BSD" 13 SLOT="0" 14 KEYWORDS="" 15 16 DEPEND=" 17 dev-util/android-tools 18 sys-fs/fuse:0 19 " 20 RDEPEND="${DEPEND}" 21 22 src_compile() { 23 emake CC=$(tc-getCC) 24 } 25 26 src_install() { 27 emake DESTDIR="${D}" install 28 dodoc README.md 29 }