diff options
Diffstat (limited to 'sys-apps/openSeaChest/openSeaChest-22.07.ebuild')
-rw-r--r-- | sys-apps/openSeaChest/openSeaChest-22.07.ebuild | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/sys-apps/openSeaChest/openSeaChest-22.07.ebuild b/sys-apps/openSeaChest/openSeaChest-22.07.ebuild new file mode 100644 index 000000000..90839415d --- /dev/null +++ b/sys-apps/openSeaChest/openSeaChest-22.07.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2023 Gentoo Authors +# +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +inherit meson + +DESCRIPTION="SeaGate's open source harddrive control utilities" +HOMEPAGE="https://github.com/Seagate/openSeaChest" +LICENSE="MPL-2.0" + +SRC_URI=" +https://github.com/Seagate/openSeaChest/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz +https://api.github.com/repos/Seagate/opensea-common/tarball/a2155bb5d1f45e50cc2e0158ed183d15e12de6bd -> opensea-common-a2155bb5d1f45e50cc2e0158ed183d15e12de6bd.tar.gz +https://api.github.com/repos/Seagate/opensea-operations/tarball/f9eab78b3cc349a74a1878b484ca27812506357b -> opensea-operations-f9eab78b3cc349a74a1878b484ca27812506357b.tar.gz +https://api.github.com/repos/Seagate/opensea-transport/tarball/f09d599a992e4e12e2537e9e5592c8bdf799dc0a -> opensea-transport-f09d599a992e4e12e2537e9e5592c8bdf799dc0a.tar.gz +https://api.github.com/repos/Seagate/wingetopt/tarball/a8c80ade25449464bc847d65420f41eb5262ff62 -> wingetopt-a8c80ade25449464bc847d65420f41eb5262ff62.tar.gz +" + +SLOT="0" +KEYWORDS="~amd64 ~arm64" +RDEPEND="" +DEPEND="${RDEPEND}" +BDEPEND="" +IDEPEND="" + +src_prepare() { + default + + # Move over submodules, because the upstream tar doesn't have them. + mkdir -p "${S}"/'subprojects' + rmdir "${S}"/'subprojects/opensea-common' || true + mv "${WORKDIR}"/'Seagate-opensea-common-a2155bb' "${S}"/'subprojects/opensea-common' + rmdir "${S}"/'subprojects/opensea-operations' || true + mv "${WORKDIR}"/'Seagate-opensea-operations-f9eab78' "${S}"/'subprojects/opensea-operations' + rmdir "${S}"/'subprojects/opensea-transport' || true + mv "${WORKDIR}"/'Seagate-opensea-transport-f09d599' "${S}"/'subprojects/opensea-transport' + rmdir "${S}"/'subprojects/wingetopt' || true + mv "${WORKDIR}"/'Seagate-wingetopt-a8c80ad' "${S}"/'subprojects/wingetopt' +} + +src_configure() { + meson_src_configure +} |