media-plugins/tap-plugins: New package
Package-Manager: Portage-3.0.4, Repoman-3.0.1 Signed-off-by: Ryan Fox <flewkey@2a03.party>
This commit is contained in:
parent
c19eb4d9f8
commit
2cad7ca612
4
media-plugins/tap-plugins/Manifest
Normal file
4
media-plugins/tap-plugins/Manifest
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
DIST tap-plugins-1.0.1.tar.gz 64649 BLAKE2B 2b8ac9a26197f5c980512d33daf4c604d7bb3046fb40e3826d559d4420921a0e124a5577d53d0896bc92111f69765f714d5f55a9da60546e2e6f29e5c851b2a5 SHA512 25f72bba83a5a40d480bc9d4659b64096102281d02e43ad93d5064b0ef7972184db40162d1ef78fd783f431740a4c4d5e03160cdd5f43da3bc1570ff462c863a
|
||||||
|
EBUILD tap-plugins-1.0.1.ebuild 638 BLAKE2B b3bb68be3028bbc28f3b696739bddc5dae25cc4a8a3107e7595a6f2836675ef08fd8202c38a390710bb01ebd4a02cea2d884121bcf1d7cd296afcce43be8c570 SHA512 6376480ac2b6c3d8a9a053686c723c91fe232d2508aece2720286e902f7699fff9d3977ea54215ef77ec46f052db9a57a8d409e6b89239fb376c738c3d63e0ba
|
||||||
|
EBUILD tap-plugins-9999.ebuild 638 BLAKE2B b3bb68be3028bbc28f3b696739bddc5dae25cc4a8a3107e7595a6f2836675ef08fd8202c38a390710bb01ebd4a02cea2d884121bcf1d7cd296afcce43be8c570 SHA512 6376480ac2b6c3d8a9a053686c723c91fe232d2508aece2720286e902f7699fff9d3977ea54215ef77ec46f052db9a57a8d409e6b89239fb376c738c3d63e0ba
|
||||||
|
MISC metadata.xml 236 BLAKE2B fdb34c66e3059efc0efb2328ffedb24c495be95dfeb68b7adcdf5ab1a88eee6788294d07ec032238de7d9127cffd50a1598b42aa8f99d3d11f54a761c79a9482 SHA512 43add4c2db3d06110521dea982cfcbddc98d63bb1e1b89952511654d54f09746e0d76ac1e0f0e70d2832357f44fe11fc4653500b856c7b29d05a55bb70535e80
|
8
media-plugins/tap-plugins/metadata.xml
Normal file
8
media-plugins/tap-plugins/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>
|
25
media-plugins/tap-plugins/tap-plugins-1.0.1.ebuild
Normal file
25
media-plugins/tap-plugins/tap-plugins-1.0.1.ebuild
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
# 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/tomszilagyi/tap-plugins/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||||
|
KEYWORDS="~amd64"
|
||||||
|
else
|
||||||
|
inherit git-r3
|
||||||
|
EGIT_REPO_URI="https://github.com/tomszilagyi/tap-plugins.git"
|
||||||
|
fi
|
||||||
|
|
||||||
|
DESCRIPTION="Tom's Audio Processing LADSPA plugins"
|
||||||
|
HOMEPAGE="http://tap-plugins.sourceforge.net/"
|
||||||
|
LICENSE="GPL-2"
|
||||||
|
SLOT="0"
|
||||||
|
|
||||||
|
DEPEND=""
|
||||||
|
RDEPEND="${DEPEND}"
|
||||||
|
BDEPEND=""
|
||||||
|
|
||||||
|
src_install() {
|
||||||
|
emake INSTALL_PLUGINS_DIR="${D}/usr/$(get_libdir)/ladspa/" INSTALL_LRDF_DIR="${D}/usr/share/ladspa/rdf/" install
|
||||||
|
}
|
25
media-plugins/tap-plugins/tap-plugins-9999.ebuild
Normal file
25
media-plugins/tap-plugins/tap-plugins-9999.ebuild
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
# 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/tomszilagyi/tap-plugins/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||||
|
KEYWORDS="~amd64"
|
||||||
|
else
|
||||||
|
inherit git-r3
|
||||||
|
EGIT_REPO_URI="https://github.com/tomszilagyi/tap-plugins.git"
|
||||||
|
fi
|
||||||
|
|
||||||
|
DESCRIPTION="Tom's Audio Processing LADSPA plugins"
|
||||||
|
HOMEPAGE="http://tap-plugins.sourceforge.net/"
|
||||||
|
LICENSE="GPL-2"
|
||||||
|
SLOT="0"
|
||||||
|
|
||||||
|
DEPEND=""
|
||||||
|
RDEPEND="${DEPEND}"
|
||||||
|
BDEPEND=""
|
||||||
|
|
||||||
|
src_install() {
|
||||||
|
emake INSTALL_PLUGINS_DIR="${D}/usr/$(get_libdir)/ladspa/" INSTALL_LRDF_DIR="${D}/usr/share/ladspa/rdf/" install
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user