summaryrefslogtreecommitdiff
path: root/dev-libs/teakra/teakra-20220224-r1.ebuild
blob: 3c65d876776cfacfed93fc743e1a65e7b07ec7b8 (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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

[[ ${PV} == 20220224 ]] && COMMIT=01db7cdd00aabcce559a8dddce8798dabb71949b

inherit cmake

DESCRIPTION="Emulator, assembler, etc for XpertTeak, the DSP used by DSi/3DS"
HOMEPAGE="https://github.com/wwylele/teakra/"

if [[ "${PV}" == *9999* ]] ; then
	inherit git-r3

	EGIT_REPO_URI="https://github.com/wwylele/${PN}.git"
else
	SRC_URI="https://github.com/wwylele/${PN}/archive/${COMMIT}.tar.gz
		-> ${P}.tar.gz"
	S="${WORKDIR}/${PN}-${COMMIT}"

	KEYWORDS="~amd64"
fi

LICENSE="MIT"
SLOT="0"

src_prepare() {
	sed -i "s|-Werror||g" ./CMakeLists.txt || die

	cmake_src_prepare
}

src_configure() {
	local -a mycmakeargs=(
		-DCMAKE_SKIP_RPATH="ON"
	)
	cmake_src_configure
}

src_test() {
	local -x LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${BUILD_DIR}/src/"

	cmake_src_test
}

src_install() {
	dolib.so "${BUILD_DIR}/src/lib${PN}.so"
	dolib.so "${BUILD_DIR}/src/lib${PN}_c.so"

	insinto /usr/include
	doins -r "./include/${PN}"

	einstalldocs
}