media-plugins/x42-midifilter: New package
Package-Manager: Portage-3.0.4, Repoman-2.3.23 Signed-off-by: Ryan Fox <flewkey@2a03.party>
This commit is contained in:
parent
1e958a31ee
commit
93a3910b84
4
media-plugins/x42-midifilter/Manifest
Normal file
4
media-plugins/x42-midifilter/Manifest
Normal file
@ -0,0 +1,4 @@
|
||||
DIST x42-midifilter-0.6.4.tar.gz 172838 BLAKE2B 940b48b9d9373f1165c2a93e64cf6b22b8aa6a5602854024b7528875eaf50c998e26f7ec040c77d643becb1cce17dae8b6a1dcc1794551377a518a2729570058 SHA512 377ea072b5af594e26199799ec6a198141348cd12fe1173f2044b0643dd2828c047365dab50f4963c334bdae18d407c2b0447b9856b86b02823cfd3a30c4eb88
|
||||
EBUILD x42-midifilter-0.6.4.ebuild 795 BLAKE2B 49653499dafe377e88d483e07bbec08053d534abaf50ad00ea6219fb8845d383d4e186ce66afb5cb7b806f315a8d4dda489f422ff05ea2575b09b9cba5c3d69f SHA512 d1d571c87ae3f8e2fa6158dbe69f66ccee792bbefd63921fbb01f8226b45581eb3e9ffdba7923d16fcb6fa52c6e565d911bf15dab72a816249efb0b284401841
|
||||
EBUILD x42-midifilter-9999.ebuild 795 BLAKE2B 49653499dafe377e88d483e07bbec08053d534abaf50ad00ea6219fb8845d383d4e186ce66afb5cb7b806f315a8d4dda489f422ff05ea2575b09b9cba5c3d69f SHA512 d1d571c87ae3f8e2fa6158dbe69f66ccee792bbefd63921fbb01f8226b45581eb3e9ffdba7923d16fcb6fa52c6e565d911bf15dab72a816249efb0b284401841
|
||||
MISC metadata.xml 236 BLAKE2B fdb34c66e3059efc0efb2328ffedb24c495be95dfeb68b7adcdf5ab1a88eee6788294d07ec032238de7d9127cffd50a1598b42aa8f99d3d11f54a761c79a9482 SHA512 43add4c2db3d06110521dea982cfcbddc98d63bb1e1b89952511654d54f09746e0d76ac1e0f0e70d2832357f44fe11fc4653500b856c7b29d05a55bb70535e80
|
8
media-plugins/x42-midifilter/metadata.xml
Normal file
8
media-plugins/x42-midifilter/metadata.xml
Normal file
@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="person">
|
||||
<email>flewkey@2a03.party</email>
|
||||
<name>Ryan Fox</name>
|
||||
</maintainer>
|
||||
</pkgmetadata>
|
40
media-plugins/x42-midifilter/x42-midifilter-0.6.4.ebuild
Normal file
40
media-plugins/x42-midifilter/x42-midifilter-0.6.4.ebuild
Normal file
@ -0,0 +1,40 @@
|
||||
# Copyright 2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
if [[ ${PV} != *9999* ]]; then
|
||||
SRC_URI="https://github.com/x42/midifilter.lv2/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64"
|
||||
else
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://github.com/x42/midifilter.lv2.git"
|
||||
fi
|
||||
|
||||
DESCRIPTION="LV2 plugins for filtering MIDI events"
|
||||
HOMEPAGE="https://x42-plugins.com/x42/x42-midifilter"
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
|
||||
DEPEND="
|
||||
media-libs/lv2
|
||||
"
|
||||
RDEPEND="${DEPEND}"
|
||||
BDEPEND=""
|
||||
|
||||
src_unpack() {
|
||||
if test ${PV} != 9999; then
|
||||
default
|
||||
mv "midifilter.lv2-${PV}" "${P}"
|
||||
else
|
||||
git-r3_src_unpack
|
||||
fi
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
emake STRIP="true" # Disable stripping
|
||||
}
|
||||
|
||||
src_install() {
|
||||
emake DESTDIR="${D}" PREFIX="/usr" LV2DIR="/usr/$(get_libdir)/lv2" install
|
||||
}
|
40
media-plugins/x42-midifilter/x42-midifilter-9999.ebuild
Normal file
40
media-plugins/x42-midifilter/x42-midifilter-9999.ebuild
Normal file
@ -0,0 +1,40 @@
|
||||
# Copyright 2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
if [[ ${PV} != *9999* ]]; then
|
||||
SRC_URI="https://github.com/x42/midifilter.lv2/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64"
|
||||
else
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://github.com/x42/midifilter.lv2.git"
|
||||
fi
|
||||
|
||||
DESCRIPTION="LV2 plugins for filtering MIDI events"
|
||||
HOMEPAGE="https://x42-plugins.com/x42/x42-midifilter"
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
|
||||
DEPEND="
|
||||
media-libs/lv2
|
||||
"
|
||||
RDEPEND="${DEPEND}"
|
||||
BDEPEND=""
|
||||
|
||||
src_unpack() {
|
||||
if test ${PV} != 9999; then
|
||||
default
|
||||
mv "midifilter.lv2-${PV}" "${P}"
|
||||
else
|
||||
git-r3_src_unpack
|
||||
fi
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
emake STRIP="true" # Disable stripping
|
||||
}
|
||||
|
||||
src_install() {
|
||||
emake DESTDIR="${D}" PREFIX="/usr" LV2DIR="/usr/$(get_libdir)/lv2" install
|
||||
}
|
Loading…
Reference in New Issue
Block a user