Files
guru/www-client/vimb/vimb-9999.ebuild
Tony Olagbaiye 7501806d96 www-client/vimb: update copyright
Signed-off-by: Tony Olagbaiye <bqv@fron.io>
2022-05-19 15:35:24 +01:00

41 lines
662 B
Bash

# Copyright 2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit savedconfig
DESCRIPTION="a fast, lightweight, vim-like browser based on webkit"
HOMEPAGE="https://fanglingsu.github.io/vimb/"
inherit git-r3
KEYWORDS=""
EGIT_REPO_URI="https://github.com/fanglingsu/vimb.git"
LICENSE="GPL-3"
SLOT="0"
IUSE="savedconfig"
DEPEND="
virtual/pkgconfig
"
RDEPEND="
x11-libs/gtk+:3
>=net-libs/webkit-gtk-2.20.0:4
"
src_prepare() {
default
restore_config config.def.h
}
src_compile() {
emake V=1 PREFIX="/usr"
}
src_install() {
emake V=1 PREFIX="/usr" DESTDIR="${D}" install
save_config src/config.def.h
}