diff options
author | 2018-01-22 21:11:31 +0000 | |
---|---|---|
committer | 2018-01-22 21:14:22 +0000 | |
commit | 0b268777008ceeb83a811fdf5dda50b1b15463d5 (patch) | |
tree | bd69d3db6a1843ac5322705f911fb05aca95bbb1 /media-libs/munt-mt32emu/munt-mt32emu-2.3.0.ebuild | |
parent | dev-ruby/sshkit: cleanup (diff) | |
download | gentoo-0b268777008ceeb83a811fdf5dda50b1b15463d5.tar.gz gentoo-0b268777008ceeb83a811fdf5dda50b1b15463d5.tar.bz2 gentoo-0b268777008ceeb83a811fdf5dda50b1b15463d5.zip |
media-libs/munt-mt32emu: New package, required by munt-mt32emu-alsadrv
Package-Manager: Portage-2.3.20, Repoman-2.3.6
Diffstat (limited to 'media-libs/munt-mt32emu/munt-mt32emu-2.3.0.ebuild')
-rw-r--r-- | media-libs/munt-mt32emu/munt-mt32emu-2.3.0.ebuild | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/media-libs/munt-mt32emu/munt-mt32emu-2.3.0.ebuild b/media-libs/munt-mt32emu/munt-mt32emu-2.3.0.ebuild new file mode 100644 index 00000000000..8e19616aa4d --- /dev/null +++ b/media-libs/munt-mt32emu/munt-mt32emu-2.3.0.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit cmake-utils + +MY_P="munt_${PV//./_}" +DESCRIPTION="Library for emulating the Roland MT-32, CM-32L, CM-64 and LAPC-I" +HOMEPAGE="https://github.com/munt/munt" +SRC_URI="https://github.com/munt/munt/archive/${MY_P}.tar.gz" +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +S="${WORKDIR}/munt-${MY_P}/mt32emu" + +PATCHES=( + "${FILESDIR}"/docs.patch +) + +src_configure() { + local mycmakeargs=( + -DLIB_INSTALL_DIR="${EPREFIX}/usr/$(get_libdir)" + ) + + cmake-utils_src_configure +} |