mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-19 20:13:01 -04:00
40 lines
697 B
Bash
40 lines
697 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/"
|
|
|
|
KEYWORDS="~amd64 ~arm ~arm64 ~x86 "
|
|
SRC_URI="https://github.com/fanglingsu/vimb/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
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
|
|
}
|