diff --git a/app-misc/adbfs/Manifest b/app-misc/adbfs/Manifest new file mode 100644 index 0000000..fae2fbe --- /dev/null +++ b/app-misc/adbfs/Manifest @@ -0,0 +1 @@ +EBUILD adbfs-9999.ebuild 644 BLAKE2B cc5a64ec492e2b1879d27ad1364f504adb09c3c416e3d57a01943763ffc5880fe9b970756e803436608949bf62881948500e5a1b457ad9bee1766ab1d4c36c58 SHA512 623ca2f2012bfd17f15c6f6272b7580b72b6f02f0e1c856ae1155382fd7d18827d1365434081b5d256bef1ca7c3f6e4a004394b09ac56d13128e60554b7de149 diff --git a/app-misc/adbfs/adbfs-9999.ebuild b/app-misc/adbfs/adbfs-9999.ebuild new file mode 100644 index 0000000..12dbf4f --- /dev/null +++ b/app-misc/adbfs/adbfs-9999.ebuild @@ -0,0 +1,36 @@ +# Copyright 2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..11} ) + +inherit git-r3 + +DESCRIPTION="Access your Android device filesystem from Midnight Commander through adb" +HOMEPAGE="https://github.com/gryf/mc_adbfs" +EGIT_REPO_URI="https://github.com/gryf/mc_adbfs" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="amd64" + +DEPEND=" + dev-util/android-tools + app-misc/mc +" +RDEPEND="${DEPEND}" +BDEPEND="" + +src_prepare() { + eapply_user +} + +src_compile() { + einfo "Skipping calling make, as it has other purpose." +} + +src_install() { + exeinto "/usr/libexec/mc/extfs.d/" + doexe "${S}/adbfs" +}