1
0
flewkey-overlay/media-plugins/remid/remid-9999.ebuild
Ryan Fox c90d662456
reMID: Make installation FHS-compliant
Changing the src_install() function seemed less invasive than patching
stuff in this case.
2020-07-11 00:01:12 +00:00

37 lines
649 B
Bash

# Copyright 2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
EGIT_REPO_URI="https://github.com/ssj71/reMID.lv2.git"
inherit git-r3 cmake
DESCRIPTION="A free software percussion synthesizer"
HOMEPAGE="https://github.com/ssj71/reMID.lv2"
LICENSE="GPL-2"
SLOT="0"
DEPEND="
dev-libs/glib
media-libs/alsa-lib
media-libs/lv2
virtual/jack
"
RDEPEND="${DEPEND}"
BDEPEND="
virtual/pkgconfig
"
src_configure() {
local mycmakeargs=(
"-DCMAKE_INSTALL_PREFIX:PATH=/usr"
)
CFLAGS+=" -D_BSD_SOURCE" cmake_src_configure
}
src_install() {
cmake_src_install
mv "${D}/usr/lib" "${D}/usr/$(get_libdir)"
}