1
0
Fork 0

media-plugins/x42-autotune: 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:
Ryan Fox 2020-09-15 05:53:17 +00:00
parent f2f34b0b0b
commit 1e958a31ee
Signed by: flewkey
GPG Key ID: 94F56ADFD848851E
4 changed files with 77 additions and 0 deletions

View File

@ -0,0 +1,5 @@
DIST robtk-0.7.1.tar.gz 116841 BLAKE2B 6ea11c113656e07f1334f512102c9ab04f91559b7b3a575518f2f1295942b693be019c0a61740fb9041e80eda828655f8fc98ebf0fd7a6ee01e161fb07081e8a SHA512 b3cb8384ab3f6f125294bdf75ec2a4d80282718829218d5df6ac2d487496374baf6ecfd7fc5c150c6d67fe885b6c10bbd30ede330d6617af437daf585961fbc1
DIST x42-autotune-0.6.2.tar.gz 103177 BLAKE2B bf66ba01b79cf98eb9ac16ce1b319c0920115a314494cdb5f878d6b2e774bf208432a186b25aa83566c690b4d715701579c88961ae31d9099079914da8833ba6 SHA512 6090c9d912d72a4f1691a8b3d6f7bd5990d7d885cb5a90f4263f2661402e5e3da5a624c25cc6ac9768ea266523e4893dfd1c66b01334a97113368dea2a772808
EBUILD x42-autotune-0.6.2.ebuild 815 BLAKE2B 60618cfd3ee198475f086d4113e10c1c5ff8a2372b5426ef251bc1c0e5ccb035b8c0b616d4eb506e737e0a7c46f3642b52eca2162cf0c5752d603801d32d75bb SHA512 c9973345cdf1d820cc30454e3dc2869493d86ad39992ffb5562204c2e5d83ffe1aaa34a61b95b3ee0ed8841df02e77249c6c3770898f0deee398fb5857d8894f
EBUILD x42-autotune-9999.ebuild 536 BLAKE2B 740c0df145a62d06cecdab4f03ec4aa5863526436760c50b05c01ef58c45a6f915b1c2216691f98537ba863565dd26a0ff853b39aa114255369d259bfb61c90d SHA512 ad384e14db79145dd0ad0f78b1af88f9ba886a0176e9a938126d4e0b7996db3fb273c6866fdbfaa8dcc3f80522b1cd6aff59780b18ef7802c29f14bb627df8c0
MISC metadata.xml 236 BLAKE2B fdb34c66e3059efc0efb2328ffedb24c495be95dfeb68b7adcdf5ab1a88eee6788294d07ec032238de7d9127cffd50a1598b42aa8f99d3d11f54a761c79a9482 SHA512 43add4c2db3d06110521dea982cfcbddc98d63bb1e1b89952511654d54f09746e0d76ac1e0f0e70d2832357f44fe11fc4653500b856c7b29d05a55bb70535e80

View 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>

View File

@ -0,0 +1,37 @@
# Copyright 2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
V_ROBTK="0.7.1"
SRC_URI="
https://github.com/x42/fat1.lv2/archive/v${PV}.tar.gz -> ${P}.tar.gz
https://github.com/x42/robtk/archive/v${V_ROBTK}.tar.gz -> robtk-${V_ROBTK}.tar.gz
"
KEYWORDS="~amd64"
DESCRIPTION="LV2 Autotune plugin based on Fons Adriaensen's zita-at1"
HOMEPAGE="http://x42-plugins.com/x42/x42-autotune"
LICENSE="GPL-2"
SLOT="0"
DEPEND="
media-libs/lv2
"
RDEPEND="${DEPEND}"
BDEPEND=""
src_unpack() {
default
mv "fat1.lv2-${PV}" "${P}" || die
rm -rf "${S}/robtk" || die
cp -r "${WORKDIR}/robtk-${V_ROBTK}" "${S}/robtk" || die
}
src_compile() {
emake STRIP="true" # Disable stripping
}
src_install() {
emake DESTDIR="${D}" PREFIX="/usr" LV2DIR="/usr/$(get_libdir)/lv2" install
}

View File

@ -0,0 +1,27 @@
# Copyright 2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
EGIT_REPO_URI="https://github.com/x42/fat1.lv2.git"
inherit git-r3
DESCRIPTION="LV2 Autotune plugin based on Fons Adriaensen's zita-at1"
HOMEPAGE="http://x42-plugins.com/x42/x42-autotune"
LICENSE="GPL-2"
SLOT="0"
DEPEND="
media-libs/lv2
"
RDEPEND="${DEPEND}"
BDEPEND=""
src_compile() {
emake STRIP="true" # Disable stripping
}
src_install() {
emake DESTDIR="${D}" PREFIX="/usr" LV2DIR="/usr/$(get_libdir)/lv2" install
}