24 lines
460 B
Bash
24 lines
460 B
Bash
|
# Copyright 1999-2023 Gentoo Authors
|
||
|
# Distributed under the terms of the GNU General Public License v2
|
||
|
|
||
|
EAPI=8
|
||
|
|
||
|
inherit meson
|
||
|
|
||
|
DESCRIPTION="Low level terminal interface library "
|
||
|
HOMEPAGE="https://github.com/termpaint/termpaint"
|
||
|
SRC_URI="https://github.com/termpaint/termpaint/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
||
|
|
||
|
LICENSE="Boost-1.0"
|
||
|
SLOT="0"
|
||
|
KEYWORDS="~amd64 ~x86"
|
||
|
IUSE=""
|
||
|
|
||
|
DEPEND=""
|
||
|
RDEPEND="${DEPEND}"
|
||
|
BDEPEND=""
|
||
|
|
||
|
src_configure() {
|
||
|
meson_src_configure
|
||
|
}
|