blob: baa47afa3328b68c31ca748bc4a6654495d25a1d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Copyright 2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
DESCRIPTION="Window Manager agnostic swallowing feature for terminal emulators"
HOMEPAGE="https://github.com/salman-abedin/devour"
SRC_URI="https://github.com/salman-abedin/devour/archive/v${PV}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="x11-libs/libX11"
RDEPEND="${DEPEND}"
BDEPEND=""
src_install() {
emake DESTDIR="${D}" PREFIX="/usr" install
}
|