blob: a653a0ee914560f0d3aebac77e0c94bbb9a26500 [file] [log] [blame]
# Copyright 2019 The Chromium OS Authors. All rights reserved.
# Distributed under the terms of the GNU General Public License v2
EAPI="6"
CROS_WORKON_COMMIT="93dc5eab5bb9aec12e103e29e6e0516d442807c6"
CROS_WORKON_TREE=("c9338e2c2e898e065dce6d62921e358a85709cd3" "762880334b5b81f8ded7ff3bb9930094fe08b65e" "e7dba8c91c1f3257c34d4a7ffff0ea2537aeb6bb")
CROS_WORKON_INCREMENTAL_BUILD=1
CROS_WORKON_LOCALNAME="platform2"
CROS_WORKON_PROJECT="chromiumos/platform2"
CROS_WORKON_DESTDIR="${S}/platform2"
CROS_WORKON_SUBTREE="common-mk smbfs .gn"
PLATFORM_SUBDIR="smbfs"
inherit cros-workon platform user
DESCRIPTION="FUSE filesystem to mount SMB shares."
HOMEPAGE="https://chromium.googlesource.com/chromiumos/platform2/+/master/smbfs/"
LICENSE="BSD-Google"
SLOT="0"
KEYWORDS="*"
RDEPEND="
=sys-fs/fuse-2.9*
net-fs/samba
"
DEPEND="
${RDEPEND}
"
pkg_preinst() {
enewuser "fuse-smbfs"
enewgroup "fuse-smbfs"
}
src_install() {
dosbin "${OUT}"/smbfs
}
platform_pkg_test() {
local tests=(
smbfs_test
)
local test_bin
for test_bin in "${tests[@]}"; do
platform_test "run" "${OUT}/${test_bin}"
done
}