summaryrefslogtreecommitdiff
path: root/dev-libs/rlottie/rlottie-0.0.1_pre20190920.ebuild
blob: e7c6b6951e12f32328706cd9fb3a6382def43c34 (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
33
34
35
36
37
38
39
40
# Copyright 2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=7

inherit meson

MY_COMMIT="93dd5305d9f5d2270a873c9c565b6931439fd11f"

DESCRIPTION="A platform independent standalone library that plays Lottie Animations"
HOMEPAGE="https://www.tizen.org/ https://github.com/Samsung/rlottie"
SRC_URI="https://github.com/Samsung/rlottie/archive/${MY_COMMIT}.tar.gz -> ${P}.tar.gz"

LICENSE="BSD FTL LGPL-2.1 MIT"
SLOT="0"
<<<<<<< HEAD
KEYWORDS="~amd64 ~x86"
=======
KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
>>>>>>> next
IUSE="test"

RESTRICT="!test? ( test )"

DEPEND="test? ( dev-cpp/gtest )"

S="${WORKDIR}/rlottie-${MY_COMMIT}"

src_configure() {
	local emesonargs=(
		$(meson_use test)
	)

	meson_src_configure
}

src_test() {
	cd "${BUILD_DIR}" || die "Failed to switch into BUILD_DIR."
	eninja test
}