# Copyright 2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 inherit meson DESCRIPTION="A simple and performant yet powerful elementary OS-style web browser" HOMEPAGE="https://odysseus.adrian.geek.nz/" SRC_URI="https://github.com/alcinnz/Odysseus/archive/${PV}.tar.gz" LICENSE="GPL-3" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="" DEPEND=" x11-libs/gtk+:3 dev-libs/granite net-libs/webkit-gtk dev-libs/json-glib dev-libs/libgee net-libs/libsoup:2.4 dev-db/sqlite:3 dev-libs/libxml2 dev-libs/appstream >=app-crypt/gcr-3 sys-devel/gettext " RDEPEND="${DEPEND}" BDEPEND="" MY_PN="Odysseus" S="${WORKDIR}/${MY_PN}-${PV}" src_configure() { mkdir build cd build meson_src_configure } src_compile() { cd build meson_src_compile } src_install() { cd build meson_src_install dosym com.github.alcinnz.odysseus /usr/bin/odysseus }