diff --git a/dev-embedded/rauc/rauc-1.3.ebuild b/dev-embedded/rauc/rauc-1.3.ebuild index 686a41b78a..5e0a70593d 100644 --- a/dev-embedded/rauc/rauc-1.3.ebuild +++ b/dev-embedded/rauc/rauc-1.3.ebuild @@ -6,7 +6,7 @@ EAPI=7 DOCBUILDER="sphinx" DOCDIR="${S}/docs" -inherit docs +inherit autotools docs DESCRIPTION="Lightweight update client that runs on your Embedded Linux device" HOMEPAGE="https://rauc.io/" @@ -36,6 +36,11 @@ DEPEND=" PATCHES=( "${FILESDIR}/${P}-tests.patch" ) +src_prepare() { + default + eautoreconf +} + src_configure() { local myconf=( $(use_enable json) @@ -44,3 +49,8 @@ src_configure() { ) econf "${myconf[@]}" } + +src_compile() { + default + docs_compile +}