blob: 3ca3bd09b91a8bacfc9b0f4f00e0b5e776055491 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit meson multilib-minimal
DESCRIPTION="A free implementation of the unicode bidirectional algorithm"
HOMEPAGE="https://fribidi.org/"
SRC_URI="https://github.com/fribidi/fribidi/releases/download/v${PV}/${P}.tar.bz2"
LICENSE="LGPL-2.1+"
SLOT="0"
KEYWORDS="amd64"
IUSE=""
RDEPEND=""
DEPEND="${RDEPEND}
virtual/pkgconfig[${MULTILIB_USEDEP}]"
PATCHES=( "${FILESDIR}"/no-config-h.diff )
multilib_src_configure() {
local emesonargs=(
-Ddocs=false
)
meson_src_configure
}
multilib_src_install() {
meson_src_install
}
|