blob: 8cef43b4ee398f1a111a4ca8f82126d51a2d0ae7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit multilib-minimal
DESCRIPTION="Library that renders module files to PCM data"
HOMEPAGE="https://github.com/libxmp/libxmp"
SRC_URI="https://github.com/libxmp/libxmp/releases/download/${P}/${P}.tar.gz"
LICENSE="MIT 0BSD public-domain"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~loong ~ppc64 ~riscv ~sparc ~x86"
src_prepare() {
default
multilib_copy_sources
}
multilib_src_compile() {
emake V=1
}
|